:root {
    --bg-dark: #0f0c15;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --bloom-pink: #FF8EBF;
    --bloom-coral: #FF9A9E;
    --bloom-lavender: #AF89FF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

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

/* Background Effects */
.background-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--bloom-pink);
    top: -100px;
    left: -100px;
    animation: float 20s infinite alternate;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--bloom-lavender);
    bottom: -100px;
    right: -100px;
    animation: float 15s infinite alternate-reverse;
}

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

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 16px 32px;
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--bloom-coral), var(--bloom-pink));
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* Typography */
h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 48px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--bloom-pink), var(--bloom-coral));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 32px;
    max-width: 500px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 120px 10% 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--bloom-pink);
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: black;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.btn-store:hover {
    transform: translateY(-2px);
}

/* Phone Mockup */
.phone-mockup {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 50px;
    border: 12px solid #2a2a2a;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.screen {
    width: 100%;
    height: 100%;
    background: #FAFAFA;
    color: #333;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.app-header {
    margin-top: 32px;
    margin-bottom: 24px;
}

.app-header .date {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.app-header .greeting {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.app-card {
    background: linear-gradient(135deg, var(--bloom-lavender), var(--bloom-pink));
    padding: 24px;
    border-radius: 24px;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 20px 40px rgba(255, 142, 191, 0.3);
}

.card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.8;
    margin-bottom: 4px;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin-bottom: 8px;
}

.fill {
    height: 100%;
    background: white;
    border-radius: 10px;
}

.card-stat {
    text-align: right;
    font-size: 0.9rem;
    font-weight: 600;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task-item {
    background: white;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.task-item .check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.task-item.checked .check {
    background: #4CD964;
    border-color: #4CD964;
}

.task-item .text {
    font-weight: 600;
    font-size: 0.95rem;
}

.task-item.checked .text {
    text-decoration: line-through;
    color: #aaa;
}

/* Features */
.features {
    padding: 80px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    transition: transform 0.3s;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 20px;
}

.glass-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.glass-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Page Layouts (Privacy, Terms, Support) */
.page-body {
    overflow-y: auto;
}

.page-content {
    padding: 120px 10% 60px;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 80vh;
}

.page-card {
    text-align: left;
    background: rgba(20, 20, 30, 0.6);
}

.page-card h1 {
    font-size: 3rem;
    margin-bottom: 8px;
    background: linear-gradient(90deg, var(--bloom-pink), var(--bloom-coral));
    background-clip: text;
    /* Standard property */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-style: italic;
}

.page-card h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    text-align: left;
    color: var(--text-primary);
}

.page-card h3 {
    font-size: 1.3rem;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--bloom-pink);
}

.page-card p,
.page-card ul {
    margin-bottom: 16px;
    color: #e0e0e0;
}

.page-card ul {
    padding-left: 24px;
}

.page-card li {
    margin-bottom: 8px;
}

.link {
    color: var(--bloom-coral);
    text-decoration: underline;
}

/* Support Page Specifcs */
.support-card {
    text-align: center;
}

.support-card h2 {
    text-align: center;
}

.faq-section {
    text-align: left;
    margin: 40px 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.contact-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.support-btn {
    display: inline-block;
    margin-top: 16px;
    font-size: 1.1rem;
    text-decoration: none;
}

.small-text {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 12px;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.step-card {
    position: relative;
    padding-top: 60px;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.step-card h3,
.step-card p {
    position: relative;
    z-index: 1;
}

/* AI Section */
.ai-section {
    padding-top: 0;
}

.ai-content {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.8), rgba(40, 30, 50, 0.4));
}

.ai-benefits {
    list-style: none;
    margin-top: 24px;
}

.ai-benefits li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* Footer */
footer {
    padding: 40px 10%;
    border-top: 1px solid var(--glass-border);
    margin-top: 80px;
}

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

.footer-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.socials {
    display: flex;
    gap: 24px;
}

.socials a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.socials a:hover {
    color: var(--bloom-pink);
}

/* About Page */
.about-card h1 {
    font-size: 3.5rem;
    text-align: center;
}

.mission-statement {
    font-size: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-primary);
    line-height: 1.4;
}

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

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
}

.value-item h3 {
    font-size: 1.2rem;
    color: var(--bloom-coral);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials-section {
    padding-top: 40px;
}

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

.testimonial-card {
    border-left: 4px solid var(--bloom-pink);
    border-radius: 8px 16px 16px 8px;
    /* Slightly different shape */
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
}

.user-info {
    font-weight: 700;
    text-align: right;
    color: var(--bloom-coral);
    margin-top: 16px;
}
/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero {
        flex-direction: column;
        padding-top: 100px;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 60px;
    }

    .glass-nav {
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }

    p {
        margin: 0 auto 32px;
    }
}
