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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #08080f;
    color: #e8e8ed;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img, svg {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ================= TOKENS ================= */
:root {
    --bg-base: #08080f;
    --bg-elevated: #0f0f1a;
    --bg-card: rgba(255, 255, 255, 0.025);
    --bg-card-hover: rgba(255, 255, 255, 0.04);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    
    --text-primary: #fafafa;
    --text-secondary: #a0a0b0;
    --text-tertiary: #6b6b7a;
    --text-muted: #4a4a5a;
    
    --accent-1: #a78bfa;
    --accent-2: #7c3aed;
    --accent-3: #c084fc;
    --accent-glow: rgba(167, 139, 250, 0.4);
    
    --gradient-primary: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    --gradient-soft: linear-gradient(135deg, rgba(167, 139, 250, 0.15) 0%, rgba(124, 58, 237, 0.05) 100%);
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(167, 139, 250, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
    
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ================= BACKGROUND ================= */
.bg-gradient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: orb-float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: #7c3aed;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #a78bfa;
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: #6d28d9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.3;
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ================= NAVIGATION ================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.4s var(--ease);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(8, 8, 15, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 8px 8px 20px;
    max-width: 1200px;
    margin: 0 24px;
    box-sizing: border-box;
    transition: all 0.4s var(--ease);
}

.nav.scrolled .nav-container {
    background: rgba(8, 8, 15, 0.8);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

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

.nav-links li a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 100px;
    transition: all 0.2s var(--ease);
}

.nav-links li a:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.nav-cta {
    background: var(--text-primary) !important;
    color: var(--bg-base) !important;
    font-weight: 600 !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--accent-1) !important;
    color: var(--bg-base) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
}

.mobile-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #c084fc 0%, #a78bfa 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.hero-desc {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-base);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
    background: var(--accent-1);
}

.btn-ghost {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-star {
    color: #fbbf24;
    font-size: 18px;
}

.meta-label {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.meta-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* ================= HERO VISUAL (PHONE) ================= */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 570px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 44px;
    padding: 12px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.08);
    z-index: 2;
    animation: phone-float 6s ease-in-out infinite;
}

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

.phone-notch {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-base);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.screen-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.status-icons {
    display: flex;
    gap: 6px;
    font-size: 12px;
}

.screen-app {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: calc(100% - 60px);
}

.screen-header-bar {
    text-align: left;
}

.screen-date {
    font-size: 11px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.screen-greeting {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.screen-mood-card {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15) 0%, rgba(124, 58, 237, 0.05) 100%);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
}

.mood-face {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.mood-eyes {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.mood-eyes span {
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
}

.mood-mouth {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 9px;
    border: 2px solid white;
    border-top: 0;
    border-radius: 0 0 18px 18px;
}

.mood-info {
    flex: 1;
}

.mood-label-small {
    font-size: 10px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.mood-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.screen-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.chip {
    padding: 6px 12px;
    font-size: 11px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-secondary);
}

.chip.active {
    background: var(--accent-1);
    color: var(--bg-base);
    border-color: var(--accent-1);
    font-weight: 600;
}

.screen-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}

.stat-pill {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
    backdrop-filter: blur(10px);
}

.stat-pill-label {
    font-size: 10px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.stat-pill-num {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.phone-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    z-index: 1;
    filter: blur(40px);
    opacity: 0.6;
    animation: phone-glow-pulse 4s ease-in-out infinite;
}

@keyframes phone-glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* ================= SCROLL INDICATOR ================= */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bounce 2s ease-in-out infinite;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid var(--text-tertiary);
    border-radius: 12px;
    position: relative;
    opacity: 0.5;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--text-tertiary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel-scroll 1.5s ease-in-out infinite;
}

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

@keyframes wheel-scroll {
    0% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) translateY(8px); }
}

/* ================= TRUST ================= */
.trust {
    padding: 0 0 40px;
    text-align: center;
}

.trust-text {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.7;
}

/* ================= SECTIONS ================= */
.features, .showcase, .privacy, .download {
    padding: 120px 0;
    position: relative;
}

.features, .privacy {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.01) 50%, transparent 100%);
}

.section-header {
    max-width: 640px;
    margin: 0 auto 64px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-1);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(167, 139, 250, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 100px;
}

.eyebrow.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-title em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #c084fc 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.section-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ================= FEATURES GRID ================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(167, 139, 250, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.large {
    grid-column: span 2;
    min-height: 280px;
}

.feature-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-1);
    margin-bottom: 12px;
    display: block;
    font-family: 'Inter', monospace;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.feature-card.large p {
    font-size: 16px;
    max-width: 380px;
}

/* Feature Visuals */
.feature-visual {
    margin-top: 28px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mood-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 360px;
}

.mood-cell {
    aspect-ratio: 1;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s var(--ease);
}

.mood-cell.happy {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(124, 58, 237, 0.1));
    border-color: var(--accent-1);
    transform: scale(1.05);
}

.feature-card:hover .mood-cell {
    transform: scale(1.08);
}

.feature-card:hover .mood-cell.happy {
    transform: scale(1.13);
}

.feature-mini-visual {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 50px;
}

.mini-chart .bar {
    width: 8px;
    background: var(--gradient-primary);
    border-radius: 4px;
    height: var(--h);
    transition: all 0.6s var(--ease);
}

.feature-card:hover .bar {
    transform: scaleY(1.1);
}

.mini-bell, .mini-shield {
    text-align: center;
}

.bell-icon, .shield-icon {
    font-size: 28px;
    margin-bottom: 4px;
}

.bell-time {
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.mini-badges {
    display: flex;
    gap: 8px;
}

.badge-item {
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s var(--ease);
}

.feature-card:hover .badge-item {
    border-color: var(--accent-1);
    transform: translateY(-2px);
}

.stats-mock {
    width: 100%;
    max-width: 360px;
    padding: 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.stats-bar {
    height: 8px;
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.stats-fill {
    height: 100%;
    width: var(--w);
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 1s var(--ease);
}

.stats-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.stats-label {
    font-size: 11px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stats-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.trend-up {
    color: #10b981;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 100px;
}

/* ================= SHOWCASE ================= */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-item {
    text-align: center;
}

.showcase-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.showcase-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

.phone-frame.small {
    width: 200px;
    height: 400px;
    margin: 0 auto;
    padding: 8px;
    border-radius: 36px;
}

.phone-frame.small .phone-notch {
    width: 70px;
    height: 18px;
    top: 16px;
}

.phone-frame.small .phone-screen {
    border-radius: 28px;
}

.gradient-1 {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #0f0f1a 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #0f0f1a 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #1e293b 0%, #1e1b4b 50%, #0f0f1a 100%);
}

.screen-mock-content {
    padding: 40px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.mock-mood-bubble {
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mock-mood-bubble.small {
    height: 40px;
    width: 60%;
}

.mock-bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    padding: 20px 0;
}

.mock-bar {
    width: 14px;
    background: linear-gradient(180deg, var(--accent-1), var(--accent-2));
    border-radius: 8px 8px 0 0;
    height: var(--h);
}

.mock-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.cal-day.active {
    background: var(--accent-1);
}

/* ================= PRIVACY ================= */
.privacy {
    background: var(--bg-elevated);
}

.privacy-wrapper {
    text-align: center;
    margin-bottom: 80px;
}

.privacy-intro {
    max-width: 600px;
    margin: 0 auto 60px;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    text-align: left;
    transition: all 0.3s var(--ease);
}

.privacy-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.privacy-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-soft);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
    margin-bottom: 20px;
}

.privacy-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.privacy-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: left;
}

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

.legal-block:last-of-type {
    margin-bottom: 0;
}

.legal-block h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.legal-block p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-block ul {
    padding-left: 0;
}

.legal-block li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 8px 0 8px 20px;
    position: relative;
}

.legal-block li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-1);
    font-weight: 600;
}

.legal-block strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-contact {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.legal-contact p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.legal-contact a {
    color: var(--accent-1);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.legal-contact a:hover {
    border-bottom-color: var(--accent-1);
}

/* ================= DOWNLOAD ================= */
.download-card {
    position: relative;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.08) 0%, rgba(124, 58, 237, 0.04) 100%);
    border: 1px solid rgba(167, 139, 250, 0.15);
    border-radius: var(--radius-2xl);
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
}

.download-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 50%);
    opacity: 0.3;
    filter: blur(60px);
    animation: download-glow 8s ease-in-out infinite;
}

@keyframes download-glow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-content h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.1;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.download-content > p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.download-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text-primary);
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.store-btn:hover {
    background: var(--bg-elevated);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

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

.store-btn div {
    text-align: left;
}

.store-btn small {
    display: block;
    font-size: 10px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-btn strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ================= FOOTER ================= */
.footer {
    background: var(--bg-base);
    border-top: 1px solid var(--border);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.6;
}

.footer-col h5 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text-primary);
}

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

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

/* ================= ANIMATIONS ================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-meta {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card.large {
        grid-column: span 2;
    }
    
    .showcase-grid {
        gap: 24px;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        background: rgba(8, 8, 15, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 16px;
        gap: 4px;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    }
    
    .nav-links.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .nav-links li a {
        display: block;
        padding: 12px 16px;
        width: 100%;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.large {
        grid-column: span 1;
        min-height: auto;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .download-card {
        padding: 48px 24px;
    }
    
    .legal-content {
        padding: 32px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .hero-meta {
        gap: 16px;
    }
    
    .meta-divider {
        display: none;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .download-buttons {
        flex-direction: column;
        width: 100%;
    }

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

/* ================= LANG TOGGLE ================= */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    margin-left: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lang-toggle:hover {
    color: var(--text-primary);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.lang-toggle svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.lang-label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

/* ================= PREMIUM ================= */
.premium {
    padding: 120px 0;
    position: relative;
}

.premium-card {
    position: relative;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.08) 0%, rgba(124, 58, 237, 0.04) 100%);
    border: 1px solid rgba(167, 139, 250, 0.15);
    border-radius: var(--radius-2xl);
    padding: 80px 60px;
    overflow: hidden;
}

.premium-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 50%);
    opacity: 0.3;
    filter: blur(60px);
    animation: download-glow 8s ease-in-out infinite;
    pointer-events: none;
}

.premium-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.premium-header {
    max-width: 640px;
    margin: 0 auto 48px;
}

.premium-eyebrow {
    margin-bottom: 16px;
}

.premium-title {
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.premium-title em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #c084fc 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.premium-desc {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 32px;
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: left;
}

.premium-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.premium-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.premium-check svg {
    width: 11px;
    height: 11px;
}

.premium-cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.premium-note {
    font-size: 13px;
    color: var(--text-tertiary);
    margin: 0;
}

.download-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

/* ================= PRIVACY CTA ROW (home) ================= */
.privacy-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}

.privacy-cta-row .btn-ghost {
    font-size: 14px;
    padding: 12px 22px;
}

/* ================= PAGE HEADER (legal pages) ================= */
.page-header {
    padding: 160px 0 40px;
    text-align: center;
}

.page-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 600;
    margin: 16px 0 20px;
    color: var(--text-primary);
}

.page-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

/* ================= LEGAL PAGE (privacy/terms) ================= */
.legal-page {
    padding: 40px 0 120px;
}

.legal-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 56px 48px;
    backdrop-filter: blur(20px);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-of-type {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.legal-section p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-section .legal-lead {
    margin-bottom: 12px;
}

.legal-section ul {
    padding-left: 0;
    list-style: none;
    margin-top: 8px;
}

.legal-section li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 8px 0 8px 24px;
    position: relative;
}

.legal-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--accent-1);
    font-weight: 600;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-contact {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.legal-contact p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.legal-contact a {
    color: var(--accent-1);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    margin-left: 4px;
}

.legal-contact a:hover {
    border-bottom-color: var(--accent-1);
}

.legal-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.legal-footer p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.legal-nav-row {
    max-width: 760px;
    margin: 32px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.legal-nav-row .btn-ghost {
    font-size: 14px;
    padding: 12px 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legal-nav-row .btn-ghost svg {
    transition: transform 0.2s var(--ease);
}

.legal-nav-row .btn-ghost:hover svg {
    transform: translateX(-3px);
}

/* ================= RESPONSIVE: PREMIUM / LEGAL ================= */
@media (max-width: 1024px) {
    .premium-card {
        padding: 60px 40px;
    }

    .premium-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .premium {
        padding: 80px 0;
    }

    .premium-card {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        gap: 4px;
        max-width: 400px;
    }

    .premium-feature {
        font-size: 14px;
    }

    .legal-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .page-header {
        padding: 130px 0 24px;
    }

    .legal-nav-row {
        flex-direction: column;
    }

    .legal-nav-row .btn-ghost {
        width: 100%;
        justify-content: center;
    }
}
