/* ==========================================
   CSS Variables & Reset
   ========================================== */
:root {
    --primary: #7c5cbf;
    --primary-dark: #5a3d9e;
    --primary-light: #9b7dd4;
    --accent: #f5a623;
    --accent-light: #ffc966;
    --bg-dark: #1a1625;
    --bg-darker: #13101c;
    --bg-card: #231d33;
    --bg-card-hover: #2d2642;
    --text-primary: #ffffff;
    --text-secondary: #b8b5c3;
    --text-muted: #6e6a7a;
    --border-color: rgba(124, 92, 191, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #e8940a 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(124, 92, 191, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', var(--font-sans);
    --font-nitya-serif: 'Marcellus', 'Cormorant Garamond', serif;
    --font-nitya-sans: 'Manrope', 'Space Grotesk', var(--font-sans);
    --nitya-rose: #E91E63;
    --nitya-rose-mid: #EC407A;
    --nitya-rose-light: #F48FB1;
    --nitya-gold: #FFD700;
    --nitya-saffron: #E65100;
    --nitya-deep: #2B0F0F;
    --nitya-gradient: radial-gradient(circle at top, #f99bb9 0%, rgba(236, 64, 122, 0.4) 30%, rgba(230, 81, 0, 0.2) 70%), linear-gradient(135deg, rgba(233, 30, 99, 0.95), rgba(236, 64, 122, 0.85));
    --budgetrise-teal: #2DE5C0;
    --budgetrise-cyan: #3DBDFF;
    --budgetrise-indigo: #081c2c;
    --budgetrise-navy: #0a2639;
    --budgetrise-glow: rgba(61, 189, 255, 0.35);
    --budgetrise-gradient: radial-gradient(circle at 25% 20%, rgba(61, 189, 255, 0.4), transparent 45%), radial-gradient(circle at 80% 0%, rgba(45, 229, 192, 0.35), transparent 55%), linear-gradient(135deg, #031424, #06263d 55%, #08314f);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

ul {
    list-style: none;
}

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

/* ==========================================
   Utility Classes
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(124, 92, 191, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--bg-darker);
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(245, 166, 35, 0.4);
}

.btn-secondary {
    background: rgba(124, 92, 191, 0.15);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(124, 92, 191, 0.25);
    border-color: var(--primary-light);
}

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

.btn-outline:hover {
    background: rgba(124, 92, 191, 0.1);
    border-color: var(--primary-light);
}

.btn-lotus {
    background: linear-gradient(120deg, var(--nitya-gold), var(--nitya-rose-mid));
    color: #2a0b0b;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.35);
    font-family: var(--font-nitya-sans);
}

.btn-lotus:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 18px 40px rgba(233, 30, 99, 0.5);
}

.btn-ghost-lotus {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-family: var(--font-nitya-sans);
}

.btn-ghost-lotus:hover {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.18);
}

.btn-playstore {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-playstore:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-light);
}

.btn-playstore svg {
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: rgba(26, 22, 37, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(26, 22, 37, 0.95);
    border-bottom-color: var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(124, 92, 191, 0.1);
}

.nav-cta {
    background: var(--gradient-accent);
    color: var(--bg-darker) !important;
    margin-left: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
    background: var(--gradient-accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 92, 191, 0.3), transparent),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(245, 166, 35, 0.1), transparent),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(124, 92, 191, 0.15), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(124, 92, 191, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    display: none;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
    font-size: 1.5rem;
}

.floating-card span {
    font-weight: 500;
    font-size: 0.95rem;
}

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

.card-2 {
    top: 40%;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
}

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

/* ==========================================
   Apps Section
   ========================================== */
.apps {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
}

.apps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.app-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-light);
}

.app-mockup {
    padding: 40px;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 92, 191, 0.1) 0%, rgba(245, 166, 35, 0.05) 100%);
}

.phone-frame {
    width: 200px;
    height: 400px;
    background: #000;
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    border: 3px solid #333;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.todo-screen {
    background: linear-gradient(180deg, #1e1e2e 0%, #2d2d44 100%);
    padding: 20px 16px;
}

.app-preview-header {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.preview-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-task {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border-left: 3px solid var(--primary);
}

.preview-task.done {
    opacity: 0.6;
    border-left-color: var(--accent);
    text-decoration: line-through;
}

.game-screen {
    background: linear-gradient(180deg, #0a0a15 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-particles {
    position: relative;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.p1 { width: 20px; height: 20px; background: #ff4757; top: 20%; left: 30%; animation-delay: 0s; }
.p2 { width: 15px; height: 15px; background: #5352ed; top: 40%; left: 60%; animation-delay: 0.5s; }
.p3 { width: 25px; height: 25px; background: #2ed573; top: 60%; left: 25%; animation-delay: 1s; }
.p4 { width: 12px; height: 12px; background: #ffa502; top: 30%; left: 70%; animation-delay: 1.5s; }
.p5 { width: 18px; height: 18px; background: #ff6b81; top: 70%; left: 55%; animation-delay: 0.75s; }

.player-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--accent);
}

.game-score {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

.nitya-app .app-mockup {
    background: linear-gradient(135deg, rgba(255, 190, 150, 0.2), rgba(233, 30, 99, 0.08));
}

.nitya-icon {
    background: linear-gradient(135deg, var(--nitya-gold), var(--nitya-rose-mid));
    color: #2b0f0f;
    font-family: var(--font-nitya-serif);
}

.nitya-screen {
    background: linear-gradient(180deg, #2b0f0f 0%, #592020 45%, #8f1f1f 100%);
    padding: 24px 20px;
    color: #fff4ec;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: var(--font-nitya-sans);
}

.nitya-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
}

.nitya-card-eyebrow {
    font-weight: 600;
    letter-spacing: 0.35em;
}

.nitya-mantra-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 18px;
    margin-top: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.nitya-avatar {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.9), rgba(233, 30, 99, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nitya-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.nitya-mantra-hint {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
}

.nitya-mantra-card h4 {
    font-family: var(--font-nitya-serif);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.nitya-mantra-meaning {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}

.nitya-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.nitya-tags span {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.nitya-reminder {
    margin-top: 24px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.nitya-reminder p {
    font-weight: 600;
}

.nitya-reminder small {
    color: rgba(255, 255, 255, 0.7);
}

.nitya-pill {
    padding: 6px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--nitya-gold), var(--nitya-rose-mid));
    color: #2b0f0f;
    font-weight: 700;
    font-size: 0.8rem;
}

.nitya-info-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--nitya-rose-light);
    display: inline-block;
    margin-bottom: 16px;
}

.nitya-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.nitya-icon {
    position: relative;
    background: linear-gradient(145deg, #ffd152, #ff5f8f);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 18px 35px rgba(255, 95, 143, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nitya-icon::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 14px;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.45), transparent 55%), radial-gradient(circle, #ff823f, #ff3b6f 65%);
    opacity: 0.9;
}

.nitya-icon img {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.budgetrise-app .app-mockup {
    background: linear-gradient(135deg, rgba(74, 185, 255, 0.25), rgba(60, 255, 170, 0.1));
}

.budgetrise-screen {
    background: linear-gradient(180deg, #071824 0%, #0c2435 60%, #11384e 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #d5f6ff;
}

.budgetrise-header {
    display: flex;
    gap: 8px;
}

.budgetrise-pill {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.budgetrise-chart {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    align-items: end;
    height: 120px;
}

.budgetrise-chart .bar {
    border-radius: 8px;
    background: linear-gradient(180deg, #47e5ff, #3dd598);
    box-shadow: 0 8px 18px rgba(71, 229, 255, 0.3);
}

.budgetrise-chart .bar-1 { height: 35%; }
.budgetrise-chart .bar-2 { height: 65%; }
.budgetrise-chart .bar-3 { height: 90%; }
.budgetrise-chart .bar-4 { height: 50%; }

.budgetrise-summary {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 14px 16px;
}

.budgetrise-summary .summary-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(213, 246, 255, 0.75);
}

.budgetrise-summary .summary-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: #69ffe1;
}

.budgetrise-icon {
    background: linear-gradient(135deg, #3dd598, #47e5ff);
    color: #02131f;
    font-weight: 700;
}

.budgetrise-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-info {
    padding: 32px;
}

.app-icon-wrapper {
    margin-bottom: 20px;
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.todo-icon {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.game-icon {
    background: var(--gradient-accent);
    color: var(--bg-darker);
}

.app-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.app-tagline {
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 16px;
}

.app-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.app-features {
    margin-bottom: 24px;
}

.app-features li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
}

.app-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ==========================================
   Nitya Mantra Landing
   ========================================== */
.nitya-page {
    background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.6), transparent 45%), #fff4ec;
    color: #2b0f0f;
    font-family: var(--font-nitya-sans);
}

.nitya-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, #ffb676, #e65100 60%, #bf360c);
    color: #fffaf3;
}

.nitya-hero__pattern {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    pointer-events: none;
}

.nitya-hero__pattern .petal {
    width: 180px;
    height: 180px;
    border-radius: 45% 55% 35% 65%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: drift 16s infinite ease-in-out;
    opacity: 0.4;
}

.petal-1 { animation-delay: 0s; }
.petal-2 { animation-delay: 5s; transform: rotate(22deg); }
.petal-3 { animation-delay: 10s; transform: rotate(-18deg); }

@keyframes drift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(8deg); opacity: 0.7; }
}

.nitya-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    align-items: center;
}

.nitya-hero__text h1 {
    font-family: var(--font-nitya-serif);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 18px;
}

.nitya-hero__eyebrow {
    letter-spacing: 0.35em;
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 18px;
}

.nitya-hero__logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, #f48fb1 30%, #ec407a 65%, #e65100 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 18px 45px rgba(230, 81, 0, 0.45);
}

.nitya-hero__logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

.nitya-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 520px;
}

.hero-highlights {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-highlights li {
    padding-left: 18px;
    position: relative;
    font-size: 0.95rem;
}

.hero-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--nitya-gold);
}

.nitya-hero__visual {
    display: flex;
    justify-content: center;
}

.app-shell {
    width: 320px;
    border-radius: 36px;
    background: #fff9f4;
    padding: 28px 24px 32px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.app-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    font-weight: 600;
    color: #3b170b;
}

.mantra-card {
    background: linear-gradient(180deg, #6a1b9a, #7e57c2);
    border-radius: 24px;
    padding: 24px;
    color: #fff;
    box-shadow: 0 18px 35px rgba(122, 65, 182, 0.5);
}

.avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.mantra-hint {
    font-size: 0.9rem;
    opacity: 0.85;
}

.mantra-card h3 {
    font-family: var(--font-nitya-serif);
    font-size: 1.5rem;
    margin: 10px 0;
}

.mantra-meaning {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

.tag-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-row span {
    font-size: 0.75rem;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

.reminder-banner {
    margin-top: 22px;
    background: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #3b170b;
}

.cta-pill {
    background: linear-gradient(120deg, #ffb300, #ff7043);
    color: #3b170b;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
}

.nitya-section {
    padding: 100px 0;
}

.nitya-section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
}

.nitya-section-heading h2 {
    font-family: var(--font-nitya-serif);
    font-size: clamp(2rem, 3vw, 3rem);
    color: #3b170b;
}

.nitya-section-heading p {
    color: rgba(43, 15, 15, 0.75);
}

.nitya-pillars {
    background: #fff9f4;
}

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

.pillar-card {
    background: #fff;
    border-radius: 24px;
    padding: 26px;
    border: 1px solid rgba(230, 81, 0, 0.1);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.05);
}

.pillar-icon {
    font-size: 1.3rem;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(230, 81, 0, 0.1);
    margin-bottom: 14px;
}

.pillar-card h3 {
    font-family: var(--font-nitya-serif);
    color: #3b170b;
    margin-bottom: 10px;
}

.pillar-card p {
    color: rgba(43, 15, 15, 0.75);
    line-height: 1.6;
}

.nitya-screens {
    background: #fff4ec;
}

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

.screen-card {
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

.language-card header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #3b170b;
}

.language-card ul {
    padding-left: 0;
    display: grid;
    gap: 10px;
    font-size: 0.95rem;
    color: #4a2d1f;
}

.language-count {
    font-weight: 700;
    color: #e65100;
}

.section-badge {
    background: rgba(230, 81, 0, 0.1);
    color: #e65100;
}

.reminder-card h3 {
    font-family: var(--font-nitya-serif);
    color: #3b170b;
    margin-bottom: 12px;
}

.reminder-card p {
    color: rgba(43, 15, 15, 0.75);
}

.time-picker {
    margin: 26px 0;
    display: flex;
    gap: 24px;
    align-items: center;
}

.time-value {
    background: #fff4ec;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 2rem;
    font-weight: 600;
    color: #e65100;
}

.time-value small {
    font-size: 0.85rem;
    color: #b05b1a;
}

.time-wheel {
    display: flex;
    gap: 10px;
    font-weight: 600;
    color: rgba(43, 15, 15, 0.4);
}

.time-wheel span.active {
    color: #e65100;
}

.notification-preview {
    background: #f0effb;
    border-radius: 18px;
    padding: 18px 20px;
    color: #2c1361;
    border: 1px solid rgba(44, 19, 97, 0.1);
}

.notification-preview small {
    display: block;
    margin-top: 8px;
    color: rgba(44, 19, 97, 0.7);
}

.nitya-actions {
    background: #fff9f4;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: center;
}

.quick-copy h2 {
    font-family: var(--font-nitya-serif);
    color: #3b170b;
    margin-bottom: 16px;
}

.quick-copy p {
    color: rgba(43, 15, 15, 0.75);
}

.quick-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quick-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.quick-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(230, 81, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.quick-row h3 {
    font-family: var(--font-nitya-serif);
    margin-bottom: 6px;
}

.quick-row p {
    color: rgba(43, 15, 15, 0.7);
    margin: 0;
}

.nitya-offline {
    background: #260b0b;
    color: #ffe7d6;
}

.offline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.offline-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.offline-card ul {
    margin: 18px 0;
    padding-left: 18px;
    line-height: 1.7;
}

.offline-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffd700;
    font-weight: 600;
}

.nitya-cta {
    background: #fff5ed;
}

.cta-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.cta-card h3 {
    font-family: var(--font-nitya-serif);
    color: #3b170b;
    font-size: 2rem;
    margin: 8px 0;
}

.cta-eyebrow {
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-size: 0.7rem;
    color: rgba(43, 15, 15, 0.55);
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .nitya-hero {
        padding: 120px 0 60px;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ==========================================
   BudgetRise Landing
   ========================================== */
.budgetrise-page {
    background: var(--budgetrise-gradient);
    min-height: 100vh;
    color: #e2f7ff;
    font-family: var(--font-sans);
}

.budgetrise-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.budgetrise-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(61, 189, 255, 0.25), transparent 55%);
    pointer-events: none;
}

.budgetrise-hero .container {
    position: relative;
    z-index: 1;
}

.budgetrise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    align-items: center;
}

.budgetrise-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(61, 189, 255, 0.4);
    background: rgba(61, 189, 255, 0.08);
    color: var(--budgetrise-cyan);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.budgetrise-hero__text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 18px;
}

.budgetrise-hero__text p {
    color: rgba(226, 247, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.budgetrise-hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-budgetrise {
    background: linear-gradient(120deg, var(--budgetrise-cyan), var(--budgetrise-teal));
    color: var(--budgetrise-indigo);
    box-shadow: 0 10px 30px var(--budgetrise-glow);
}

.btn-budgetrise:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(61, 189, 255, 0.45);
}

.btn-outline-budgetrise {
    border-color: rgba(226, 247, 255, 0.3);
    color: #e2f7ff;
}

.btn-outline-budgetrise:hover {
    background: rgba(226, 247, 255, 0.08);
    border-color: rgba(226, 247, 255, 0.6);
}

.budgetrise-hero__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.budgetrise-metric {
    background: rgba(6, 38, 61, 0.6);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(61, 189, 255, 0.15);
}

.budgetrise-metric strong {
    display: block;
    font-size: 1.4rem;
    color: var(--budgetrise-teal);
}

.budgetrise-metric span {
    color: rgba(226, 247, 255, 0.7);
    font-size: 0.9rem;
}

.budgetrise-hero__visual {
    display: flex;
    justify-content: center;
}

.budgetrise-shell {
    width: 340px;
    border-radius: 40px;
    padding: 28px;
    background: rgba(1, 8, 16, 0.8);
    border: 1px solid rgba(61, 189, 255, 0.2);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.45);
}

.budgetrise-shell header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(226, 247, 255, 0.8);
    font-weight: 600;
    margin-bottom: 16px;
}

.budgetrise-balance {
    font-size: 2rem;
    font-weight: 700;
    color: var(--budgetrise-teal);
    margin: 12px 0 4px;
}

.budgetrise-shell small {
    color: rgba(226, 247, 255, 0.6);
}

.budgetrise-hero-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.budgetrise-hero-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(226, 247, 255, 0.08);
    padding-bottom: 8px;
}

.budgetrise-section {
    padding: 100px 0;
}

.budgetrise-section .section-header p {
    color: rgba(226, 247, 255, 0.75);
}

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

.budgetrise-card {
    background: rgba(5, 24, 37, 0.85);
    border: 1px solid rgba(61, 189, 255, 0.12);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.budgetrise-card h3 {
    color: #f5fffa;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.budgetrise-card p {
    color: rgba(226, 247, 255, 0.75);
}

.budgetrise-card ul {
    margin-top: 16px;
    padding-left: 18px;
    color: rgba(226, 247, 255, 0.75);
    line-height: 1.7;
}

.budgetrise-glow-box {
    background: rgba(7, 24, 36, 0.9);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(45, 229, 192, 0.25);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.45);
}

.budgetrise-glow-box h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 12px;
}

.budgetrise-glow-box p {
    color: rgba(226, 247, 255, 0.75);
}

.budgetrise-cta {
    text-align: center;
    padding: 80px 0 120px;
}

.budgetrise-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.budgetrise-cta p {
    color: rgba(226, 247, 255, 0.7);
    margin-bottom: 24px;
}

.budgetrise-cta .btn {
    min-width: 220px;
}

.budgetrise-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(61, 189, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--budgetrise-cyan);
}

.budgetrise-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.budgetrise-feature-item {
    background: rgba(5, 24, 37, 0.85);
    border: 1px solid rgba(61, 189, 255, 0.12);
    border-radius: 24px;
    padding: 28px;
    transition: var(--transition);
}

.budgetrise-feature-item:hover {
    border-color: rgba(61, 189, 255, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.budgetrise-feature-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(61, 189, 255, 0.2);
    margin-bottom: 12px;
    line-height: 1;
}

.budgetrise-feature-item h3 {
    color: #f5fffa;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.budgetrise-feature-item p {
    color: rgba(226, 247, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==========================================
   BudgetRise Delete Data Page
   ========================================== */
.budgetrise-delete {
    min-height: 100vh;
    background: radial-gradient(circle at 0% 0%, rgba(61, 189, 255, 0.15), transparent 50%), #050f18;
    color: #e4f7ff;
    padding: 140px 0 100px;
}

.delete-card {
    background: rgba(4, 20, 32, 0.85);
    border-radius: 32px;
    border: 1px solid rgba(61, 189, 255, 0.12);
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    max-width: 960px;
    margin: 0 auto;
}

.delete-card h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.delete-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.delete-meta span {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(61, 189, 255, 0.3);
    color: rgba(226, 247, 255, 0.8);
    font-size: 0.85rem;
}

.delete-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(61, 189, 255, 0.12);
}

.delete-section h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.delete-section p,
.delete-section li {
    color: rgba(226, 247, 255, 0.78);
    line-height: 1.7;
}

.delete-section ol,
.delete-section ul {
    margin-left: 18px;
    margin-top: 8px;
}

.delete-section ol li:not(:last-child) {
    margin-bottom: 10px;
}

.response-box {
    margin-top: 20px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(6, 30, 46, 0.8);
    border: 1px solid rgba(61, 189, 255, 0.2);
}

.delete-form {
    margin-top: 16px;
    display: grid;
    gap: 16px;
}

.delete-form input,
.delete-form textarea {
    background: rgba(5, 20, 32, 0.85);
    border: 1px solid rgba(61, 189, 255, 0.2);
    border-radius: 12px;
    padding: 14px;
    color: #e4f7ff;
}

.delete-form button {
    justify-content: center;
}

.retention-note {
    margin-top: 18px;
    font-size: 0.95rem;
    color: rgba(226, 247, 255, 0.65);
}

@media (max-width: 768px) {
    .budgetrise-grid {
        gap: 32px;
    }

    .budgetrise-shell {
        width: 100%;
    }

    .budgetrise-section {
        padding: 60px 0;
    }

    .delete-card {
        padding: 28px;
    }
}

/* ==========================================
   ToDo Landing Page
   ========================================== */
.todo-page {
    background: radial-gradient(circle at 25% 0%, rgba(124, 92, 191, 0.25), transparent 50%),
                radial-gradient(circle at 80% 10%, rgba(245, 166, 35, 0.15), transparent 45%),
                linear-gradient(135deg, #0f0b1a, #1a1230 50%, #0f0b1a);
    min-height: 100vh;
    color: #ede8f7;
    font-family: var(--font-sans);
}

.todo-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.todo-hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(124, 92, 191, 0.3), transparent 55%);
    pointer-events: none;
}

.todo-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    align-items: center;
}

.todo-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(124, 92, 191, 0.4);
    background: rgba(124, 92, 191, 0.1);
    color: var(--primary-light);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.todo-hero__text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 18px;
    color: #fff;
}

.todo-hero__text .hero-subtitle {
    color: rgba(237, 232, 247, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 28px;
}

.btn-todo {
    background: linear-gradient(120deg, var(--accent), var(--primary));
    color: #fff;
    box-shadow: 0 10px 30px rgba(124, 92, 191, 0.35);
}

.btn-todo:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(124, 92, 191, 0.5);
}

.btn-outline-todo {
    background: transparent;
    border: 1px solid rgba(237, 232, 247, 0.3);
    color: #ede8f7;
}

.btn-outline-todo:hover {
    background: rgba(237, 232, 247, 0.08);
    border-color: rgba(237, 232, 247, 0.6);
}

.todo-hero__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.todo-metric {
    background: rgba(20, 14, 40, 0.6);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(124, 92, 191, 0.2);
}

.todo-metric strong {
    display: block;
    font-size: 1.4rem;
    color: var(--accent);
}

.todo-metric span {
    color: rgba(237, 232, 247, 0.7);
    font-size: 0.9rem;
}

.todo-hero__visual {
    display: flex;
    justify-content: center;
}

.todo-shell {
    width: 340px;
    border-radius: 40px;
    padding: 28px;
    background: rgba(10, 6, 20, 0.85);
    border: 1px solid rgba(124, 92, 191, 0.25);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.45);
}

.todo-shell header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(237, 232, 247, 0.8);
    font-weight: 600;
    margin-bottom: 20px;
}

.todo-shell__tasks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.todo-shell__task {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(124, 92, 191, 0.1);
}

.todo-shell__task.done {
    opacity: 0.6;
}

.todo-shell__check {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    border: 2px solid rgba(124, 92, 191, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    color: transparent;
}

.todo-shell__check.checked {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: #fff;
}

.todo-shell__task p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ede8f7;
    margin: 0;
}

.todo-shell__task small {
    font-size: 0.75rem;
    color: rgba(237, 232, 247, 0.5);
}

.todo-shell__streak {
    margin-left: auto;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(245, 166, 35, 0.15);
    color: var(--accent);
    white-space: nowrap;
    font-weight: 600;
}

.todo-shell__timer {
    margin-top: 16px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(124, 92, 191, 0.1);
    border: 1px solid rgba(124, 92, 191, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: rgba(237, 232, 247, 0.8);
}

.todo-shell__time {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent);
}

.todo-section {
    padding: 100px 0;
}

.todo-section .section-header h2 {
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.todo-section .section-header p {
    color: rgba(237, 232, 247, 0.7);
}

.todo-section .section-badge {
    background: rgba(124, 92, 191, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(124, 92, 191, 0.3);
}

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

.todo-pillar-card {
    background: rgba(20, 14, 40, 0.7);
    border: 1px solid rgba(124, 92, 191, 0.15);
    border-radius: 24px;
    padding: 28px;
    transition: var(--transition);
}

.todo-pillar-card:hover {
    border-color: rgba(124, 92, 191, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.todo-pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(124, 92, 191, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--accent);
}

.todo-pillar-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.todo-pillar-card p {
    color: rgba(237, 232, 247, 0.7);
    line-height: 1.6;
}

.todo-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.todo-feature-item {
    background: rgba(20, 14, 40, 0.7);
    border: 1px solid rgba(124, 92, 191, 0.12);
    border-radius: 24px;
    padding: 28px;
    transition: var(--transition);
}

.todo-feature-item:hover {
    border-color: rgba(124, 92, 191, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.todo-feature-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(124, 92, 191, 0.2);
    margin-bottom: 12px;
    line-height: 1;
}

.todo-feature-item h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.todo-feature-item p {
    color: rgba(237, 232, 247, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.todo-glow-box {
    background: rgba(20, 14, 40, 0.9);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(124, 92, 191, 0.25);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.45);
}

.todo-glow-box h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 12px;
    color: #fff;
}

.todo-glow-box > p {
    color: rgba(237, 232, 247, 0.75);
    line-height: 1.7;
    max-width: 640px;
}

.todo-privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.todo-privacy-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(124, 92, 191, 0.08);
    border: 1px solid rgba(124, 92, 191, 0.15);
    color: var(--primary-light);
}

.todo-privacy-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(237, 232, 247, 0.85);
}

.todo-cta {
    text-align: center;
    padding: 80px 0 120px;
}

.todo-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
    color: #fff;
}

.todo-cta p {
    color: rgba(237, 232, 247, 0.7);
    margin-bottom: 24px;
}

.todo-cta .btn {
    min-width: 220px;
}

@media (max-width: 768px) {
    .todo-hero {
        padding: 120px 0 60px;
    }

    .todo-shell {
        width: 100%;
    }

    .todo-section {
        padding: 60px 0;
    }
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    padding: 100px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(124, 92, 191, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags li {
    padding: 6px 12px;
    background: rgba(124, 92, 191, 0.1);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 500;
}

/* ==========================================
   About Section
   ========================================== */
.about {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content .section-badge {
    margin-bottom: 16px;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-title {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-item strong {
    display: block;
    font-weight: 600;
}

.highlight-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.about-links {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.about-tech {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
}

.about-tech h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-category h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tags span {
    padding: 8px 16px;
    background: rgba(124, 92, 191, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.tech-tags span:hover {
    background: rgba(124, 92, 191, 0.25);
    border-color: var(--primary-light);
}

.tech-btn-secondary:hover {
    background: rgba(124, 92, 191, 0.25);
    border-color: var(--primary-light);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    padding: 100px 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-badge {
    margin-bottom: 16px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-light);
    transform: translateX(8px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(124, 92, 191, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-details strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ==========================================
   App Landing Pages
   ========================================== */
.app-hero {
    min-height: auto;
    padding: 160px 24px 80px;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.breadcrumbs a {
    color: var(--primary-light);
}

.app-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.app-meta span {
    padding: 8px 14px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: rgba(124, 92, 191, 0.1);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.app-section {
    padding: 80px 0;
}

.app-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.app-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
}

.app-info-card h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.app-info-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.feature-card {
    background: rgba(124, 92, 191, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 20px;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.download-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    position: sticky;
    top: 120px;
}

.download-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.app-screens {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.app-screens .phone-frame {
    width: 160px;
    height: 320px;
}

.mantra-list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.mantra-list li {
    margin-bottom: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 16px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(124, 92, 191, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-light);
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (min-width: 1200px) {
    .hero-visual {
        display: block;
    }
    
    .hero-content {
        text-align: left;
        margin: 0;
        margin-left: 5%;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-stats {
        justify-content: flex-start;
    }
}

@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 8px;
        transition: var(--transition);
        border-left: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
        justify-content: center;
    }
    
    .hero {
        padding: 120px 24px 60px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .phone-frame {
        width: 160px;
        height: 320px;
    }
    
    .app-info {
        padding: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .app-mockup {
        padding: 24px;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .about-links {
        flex-direction: column;
    }
    
    .social-link {
        justify-content: center;
    }
}
