﻿/* ================================================
   AURITUAL LANDING â€” PREMIUM DESIGN SYSTEM
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* â”€â”€ CSS Variables â”€â”€ */
:root {
    --bg-primary: #080610;
    --bg-secondary: #0E0918;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);

    --accent1: #FF2D78;
    /* hot fuchsia / magenta */
    --accent2: #FF6B9D;
    /* rose pink */
    --accent3: #FFB800;
    /* gold */
    --accent4: #FF4D8D;
    /* vivid pink */
    --accent-fire: #FF6B35;
    --accent-water: #38BDF8;
    --accent-earth: #4ADE80;
    --accent-light: #FFD700;

    --text-primary: #FFF0F8;
    --text-secondary: #C4A0B8;
    --text-muted: #7A5570;

    --border: rgba(255, 100, 180, 0.1);
    --border-glow: rgba(255, 45, 120, 0.4);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --shadow-glow: 0 0 60px rgba(255, 45, 120, 0.18);
    --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.45);

    --font: 'Inter', system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* â”€â”€ Reset â”€â”€ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    font-family: var(--font);
}

/* â”€â”€ Aurora Background â€” warm fuchsia / gold / rose â”€â”€ */
.aurora-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 55% at 15% -5%, rgba(255, 45, 120, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 55% 45% at 85% 105%, rgba(255, 184, 0, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 45% 40% at 50% 45%, rgba(255, 107, 157, 0.08) 0%, transparent 55%);
    animation: auroraShift 12s ease-in-out infinite alternate;
}

@keyframes auroraShift {
    0% {
        opacity: 0.75;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.06);
    }
}

/* â”€â”€ Sparkle/shimmer utility â”€â”€ */
@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }

    100% {
        opacity: 0;
        transform: scale(0.5) rotate(360deg);
    }
}


/* â”€â”€ Layout â”€â”€ */
section {
    position: relative;
    z-index: 1;
}

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

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

/* â”€â”€ Badge â”€â”€ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 45, 120, 0.15);
    border: 1px solid rgba(255, 45, 120, 0.35);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent4);
    box-shadow: 0 0 8px var(--accent4);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* â”€â”€ Section Title â”€â”€ */
.section-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent4), var(--accent3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(8, 6, 16, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 45, 120, 0.12);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 0 8px rgba(255, 45, 120, 0.4));
}

.nav-logo:hover .nav-logo-img {
    filter: drop-shadow(0 0 14px rgba(255, 77, 141, 0.7));
    transform: scale(1.05);
}

.nav-logo-text {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent4), var(--accent3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 8px;
}

.nav-link {
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.07);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.lang-current:hover {
    color: var(--text-primary);
    border-color: var(--border-glow);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(14, 9, 24, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 160px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.lang-btn.active {
    color: var(--accent4);
    background: rgba(255, 45, 120, 0.1);
}

/* Download Button (Nav) */
.btn-nav-download {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-nav-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 45, 120, 0.4);
}

/* ============================================
   HERO
   ============================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-title {
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 0 20px;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(255, 45, 120, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 45, 120, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.btn-secondary:hover {
    color: var(--text-primary);
    border-color: var(--border-glow);
    background: rgba(255, 255, 255, 0.09);
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent4), var(--accent3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 2px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 45, 120, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.phone-mockup {
    width: 280px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    position: relative;
    z-index: 2;
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-16px) rotate(1deg);
    }
}

.phone-screen {
    background: #100818;
    border-radius: 34px;
    padding: 20px 16px;
    min-height: 540px;
    overflow: hidden;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

.phone-greeting {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.phone-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(90deg, var(--accent4), var(--accent3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nova-phone-card {
    background: linear-gradient(135deg, rgba(255, 45, 120, 0.25), rgba(255, 107, 157, 0.15));
    border: 1px solid rgba(255, 45, 120, 0.3);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 14px;
}

.nova-card-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent4);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.nova-card-quote {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}

.phone-habits-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.habit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 8px;
}

.habit-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.habit-emoji {
    font-size: 18px;
}

.habit-row-name {
    font-size: 12px;
    font-weight: 600;
}

.habit-row-streak {
    font-size: 10px;
    color: var(--text-muted);
}

.habit-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.habit-check.done {
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
}

.habit-check.pending {
    border: 2px solid var(--border);
}

/* Floating cards around phone */
.float-card {
    position: absolute;
    background: rgba(14, 9, 24, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    z-index: 3;
    animation: floatCard 5s ease-in-out infinite;
}

.float-card:nth-child(2) {
    animation-delay: -2s;
}

.float-card:nth-child(3) {
    animation-delay: -3.5s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.float-card-top {
    top: 8%;
    right: -8%;
}

.float-card-bottom {
    bottom: 14%;
    right: -10%;
}

.float-label {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.float-value {
    font-size: 22px;
    font-weight: 800;
}

.float-value.violet {
    background: linear-gradient(90deg, var(--accent4), var(--accent3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.float-value.fire {
    color: var(--accent-fire);
}

.float-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ============================================
   FEATURES
   ============================================ */
#features {
    background: var(--bg-secondary);
}

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

.features-header .section-sub {
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 45, 120, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.icon-bg-1 {
    background: linear-gradient(135deg, rgba(255, 45, 120, 0.2), rgba(255, 107, 157, 0.2));
}

.icon-bg-2 {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(255, 107, 157, 0.1));
}

.icon-bg-3 {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(6, 182, 212, 0.1));
}

.icon-bg-4 {
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.2), rgba(255, 45, 120, 0.2));
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feature-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   NOVA SPOTLIGHT
   ============================================ */
#nova {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

#nova::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 45, 120, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.nova-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nova-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px 0;
}

.nova-feat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.nova-feat-item:hover {
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
}

.nova-feat-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Chat Preview */
.nova-chat-preview {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.chat-header {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nova-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 0 16px rgba(255, 45, 120, 0.4);
}

.chat-header-info {
    flex: 1;
}

.chat-header-name {
    font-size: 15px;
    font-weight: 700;
}

.chat-header-status {
    font-size: 12px;
    color: var(--accent-earth);
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-earth);
    animation: pulseDot 2s infinite;
}

.chat-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 260px;
}

.chat-msg {
    max-width: 78%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.chat-msg.user {
    background: rgba(255, 255, 255, 0.07);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    color: var(--text-primary);
}

.chat-msg.nova {
    background: linear-gradient(135deg, rgba(255, 45, 120, 0.2), rgba(255, 107, 157, 0.15));
    border: 1px solid rgba(255, 45, 120, 0.25);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    color: var(--text-primary);
}

.chat-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
    background: rgba(255, 45, 120, 0.1);
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    width: fit-content;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent4);
    animation: typing 1.2s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
#how {
    background: var(--bg-secondary);
}

.how-header {
    text-align: center;
    margin-bottom: 64px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 16%;
    right: 16%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    box-shadow: 0 0 32px rgba(255, 45, 120, 0.3);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   AURA TYPES
   ============================================ */
#aura {
    background: var(--bg-primary);
}

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

.aura-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.aura-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.aura-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.aura-card.fire::after {
    background: var(--accent-fire);
}

.aura-card.water::after {
    background: var(--accent-water);
}

.aura-card.earth::after {
    background: var(--accent-earth);
}

.aura-card.light::after {
    background: var(--accent-light);
}

.aura-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.aura-card.fire:hover {
    border-color: rgba(249, 115, 22, 0.4);
}

.aura-card.water:hover {
    border-color: rgba(6, 182, 212, 0.4);
}

.aura-card.earth:hover {
    border-color: rgba(34, 197, 94, 0.4);
}

.aura-card.light:hover {
    border-color: rgba(234, 179, 8, 0.4);
}

.aura-emoji {
    font-size: 48px;
    margin-bottom: 14px;
}

.aura-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

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

.aura-card.fire .aura-name {
    color: var(--accent-fire);
}

.aura-card.water .aura-name {
    color: var(--accent-water);
}

.aura-card.earth .aura-name {
    color: var(--accent-earth);
}

.aura-card.light .aura-name {
    color: var(--accent-light);
}

/* ============================================
   PRICING
   ============================================ */
#pricing {
    background: var(--bg-secondary);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: end;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.popular {
    background: linear-gradient(135deg, rgba(255, 45, 120, 0.12), rgba(255, 107, 157, 0.08));
    border-color: rgba(255, 45, 120, 0.4);
    transform: scale(1.03);
    box-shadow: 0 0 60px rgba(255, 45, 120, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-4px);
}

.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    border-radius: 100px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.plan-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.plan-sub-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.plan-price {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent4), var(--accent3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--border);
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.plan-features li::before {
    content: '\2713';
    flex-shrink: 0;
    color: var(--accent1);
    font-weight: 700;
    font-size: 14px;
    margin-top: 1px;
}

/* ============================================
   DOWNLOAD CTA
   ============================================ */
#download {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

#download::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 45, 120, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.download-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.download-title {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.download-sub {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.store-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    color: var(--text-primary);
    transition: var(--transition);
    min-width: 200px;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 45, 120, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.store-btn.hidden {
    display: none;
}

.store-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.store-info {
    text-align: left;
}

.store-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.store-name {
    font-size: 18px;
    font-weight: 700;
}

.download-note {
    font-size: 13px;
    color: var(--text-muted);
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
}

.footer-made {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.social-btn:hover {
    background: rgba(255, 45, 120, 0.2);
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .float-card-top {
        right: -4%;
        top: 6%;
    }

    .float-card-bottom {
        right: -4%;
        bottom: 10%;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .nova-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* On tablets, show phone but smaller */
    .hero-visual {
        display: flex;
    }

    .phone-mockup {
        width: 240px;
    }

    .float-card-top {
        top: 4%;
        right: 0;
    }

    .float-card-bottom {
        bottom: 8%;
        right: 0;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aura-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid::before {
        display: none;
    }
}

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

    .container {
        padding: 0 20px;
    }

    .nav-center {
        display: none;
    }

    /* Hero â€” stack and hide phone on mobile */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

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

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

    .hero-sub {
        margin: 0 auto 40px;
    }

    /* Feature cards */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Nova */
    .nova-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    /* Aura */
    .aura-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Store buttons */
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 300px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 48px 0;
    }

    .aura-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 40px;
    }

    .download-title {
        font-size: 44px;
    }

    .nav-right .btn-nav-download span {
        display: none;
    }

    .badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .stat-num {
        font-size: 22px;
    }
}