:root {
    --bg-dark: #09090e;
    --bg-card: rgba(26, 26, 36, 0.6);
    --border-color: rgba(42, 42, 53, 0.8);
    --primary-pink: #FF4785;
    --primary-pink-rgb: 255, 71, 133;
    --accent-orange: #FF8A00;
    --accent-indigo: #6366F1;
    --accent-gold: #FFD700;
    --primary-green: #10B981;
    --primary-green-rgb: 16, 185, 129;
    --primary-pink-rgb: 255, 71, 133;
    --accent-orange: #FF8A00;
    --accent-indigo: #6366F1;
    --accent-gold: #FFD700;
    
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0AB;
    --text-muted: #71717A;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASIC STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

/* --- AMBIENT GLOW EFFECTS --- */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-pink) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-indigo) 0%, transparent 70%);
    top: 600px;
    left: -200px;
}

.glow-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
    bottom: 200px;
    right: -100px;
}

/* --- PREMIUM TYPOGRAPHY & GRADIENTS --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- HEADER / NAVIGATION --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(9, 9, 14, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-orange) 100%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 71, 133, 0.3);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-text span {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FFB800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.nav-link:hover {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-orange) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 71, 133, 0.25);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 133, 0.45);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-orange) 100%);
    color: white;
}

.btn-primary:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.btn-block {
    display: flex;
    width: 100%;
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 10rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 71, 133, 0.1);
    border: 1px solid rgba(255, 71, 133, 0.2);
    color: var(--accent-orange);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.download-badges {
    display: flex;
    gap: 1.5rem; 
    margin-bottom: 3.5rem;
    justify-content: center;
    align-items: center;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    background: #000;
    border: 1.5px solid #333; 
    border-radius: 12px; 
    padding: 8px 20px;
    height: 60px; 
    width: 190px;
    color: #FFF;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.store-badge:hover {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-orange) 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 133, 0.4);
}

.store-badge svg {
    height: 100%;
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-lbl {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

/* --- INTERACTIVE PHONE MOCKUP --- */
.hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    background: #111;
    border: 12px solid #222;
    border-radius: 40px;
    width: 320px;
    height: 640px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(255, 71, 133, 0.15);
    position: relative;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #0d0d14;
    display: flex;
    flex-direction: column;
    color: white;
}

.phone-header {
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 10;
}

.android-camera {
    width: 10px;
    height: 10px;
    background: #111;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.phone-icons {
    display: flex;
    gap: 6px;
    align-items: center;
}

.android-nav-bar {
    height: 16px;
    background-color: #0d0d14;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 10;
    padding-bottom: 5px;
}

.android-gesture-pill {
    width: 72px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.phone-content {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.app-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.app-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: #1A1A24;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-pink);
    font-size: 0.9rem;
}

.user-greeting {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: block;
}

.user-name {
    font-size: 0.85rem;
}

.premium-badge {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-orange) 100%);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
}

/* Circular progress card inside mock phone */
.metrics-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-title {
    font-size: 0.75rem;
    align-self: flex-start;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.circle-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calories-left {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.calories-unit {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.macros-row {
    width: 100%;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.macro-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.macro-bar-bg {
    height: 5px;
    background: #111;
    border-radius: 5px;
    overflow: hidden;
}

.macro-bar-fill {
    height: 100%;
    border-radius: 5px;
}

.macro-bar-fill.protein { background: var(--primary-pink); }
.macro-bar-fill.carbs { background: var(--accent-indigo); }
.macro-bar-fill.fats { background: var(--accent-orange); }

.macro-val {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-align: right;
}

/* Tabs & items inside mock phone */
.mock-tabs {
    display: flex;
    background: #12121C;
    border-radius: 8px;
    padding: 3px;
    margin-bottom: 8px;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 6px 0;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.tab-btn.active {
    background: var(--bg-card);
    color: white;
}

.mock-list-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    overflow-y: auto;
}

.mock-item-icon.bg-meal { background: rgba(76, 187, 23, 0.15); color: #4CBB17; }

.mock-item {
    background: #151520;
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.4s ease forwards;
}

.mock-item-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.75rem;
}

.mock-item-icon.bg-meal { background: rgba(76, 187, 23, 0.15); color: #4CBB17; }
.mock-item-icon.bg-workout { background: rgba(99, 102, 241, 0.15); color: var(--accent-indigo); }

.mock-item-info {
    flex: 1;
}

.mock-item-info h6 {
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.mock-item-info p {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.mock-item-meta {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- KEY FEATURES SECTION --- */
.features-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-tag {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FFB800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-orange) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 71, 133, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

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

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.card-icon.bg-pink { background: rgba(255, 71, 133, 0.15); color: var(--primary-pink); }
.card-icon.bg-orange { background: rgba(255, 138, 0, 0.15); color: var(--accent-orange); }
.card-icon.bg-indigo { background: rgba(99, 102, 241, 0.15); color: var(--accent-indigo); }
.card-icon.bg-gold { background: rgba(255, 215, 0, 0.15); color: var(--accent-gold); }

.card-heading {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- ESTIMATOR / PROTOCOL PREVIEW WIDGET --- */
.protocol-section {
    padding: 6rem 2rem;
    background: radial-gradient(100% 100% at 50% 0%, rgba(255, 71, 133, 0.05) 0%, rgba(9, 9, 14, 0) 100%);
}

.protocol-container {
    max-width: 900px;
    margin: 0 auto;
}

.protocol-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.widget-box {
    background: rgba(26, 26, 36, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    min-height: 380px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-input {
    background: #151520;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    height: 48px;
    padding: 0 1rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 10px rgba(255, 71, 133, 0.1);
}

.input-with-label {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-label input {
    width: 100%;
}

.unit-label {
    position: absolute;
    right: 1rem;
    color: var(--text-muted);
    font-weight: 700;
}

/* Widget Loading View */
.widget-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 280px;
    text-align: center;
}

.spinner {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.loading-step {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Widget Results View */
.widget-results {
    display: none;
    animation: fadeIn 0.5s ease;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.result-header h3 {
    font-size: 1.4rem;
}

#result-goal-tag {
    font-size: 0.85rem;
    color: var(--primary-pink);
    font-weight: 700;
}

.result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.result-main-card {
    background: #111119;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.result-calories {
    font-size: 3rem;
    margin: 0.5rem 0 1.5rem;
    font-weight: 800;
}

.result-calories .unit {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
}

.result-macros {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-macro-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.macro-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.macro-weight {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: -4px;
}

.result-macro-bar {
    height: 8px;
    background: #1F1F2B;
    border-radius: 4px;
    overflow: hidden;
}

.result-macro-bar .fill {
    height: 100%;
    border-radius: 4px;
}

.result-macro-bar .fill.protein { background: var(--primary-pink); }
.result-macro-bar .fill.carbs { background: var(--accent-indigo); }
.result-macro-bar .fill.fats { background: var(--accent-orange); }

.result-secondary-card {
    background: #111119;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.result-secondary-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.meal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meal-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 0.75rem;
}

.meal-list li:last-child {
    border: none;
    padding-bottom: 0;
}

.meal-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.meal-cal {
    font-size: 0.85rem;
    color: var(--primary-pink);
    font-weight: 700;
}

.results-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 71, 133, 0.05);
    border: 1px dashed rgba(255, 71, 133, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.results-cta p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 460px;
}

.download-badges.mini {
    margin: 0;
    gap: 0.75rem;
}

.download-badges.mini .store-badge {
    height: 40px;
    width: 130px;
    padding: 6px 12px;
}

/* --- FAQ ACCORDION --- */
.faq-section {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-trigger:hover {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-trigger i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-panel p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- FOOTER --- */
.footer {
    background: #050508;
    border-top: 1px solid var(--border-color);
    padding: 5rem 2rem 2.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4, .footer-socials h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-socials .social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #111;
    border: 1px solid #222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-orange) 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 71, 133, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* --- RESPONSIVE WORK --- */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .download-badges {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .nav-menu {
        display: none; /* Mobile simplicity */
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .result-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .results-cta {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* --- MOCKUP WORKOUTS & CALENDAR STYLING --- */
.mock-calendar-strip {
    display: flex;
    justify-content: space-between;
    background: #111119;
    border-radius: 10px;
    padding: 6px 8px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}

.mock-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 34px;
    padding: 4px 0;
    border-radius: 8px;
    font-size: 0.6rem;
    color: var(--text-muted);
}

.mock-day.active {
    background: var(--accent-orange);
    color: white;
}

.mock-day strong {
    font-size: 0.75rem;
    font-weight: 800;
}

.mock-workout-header {
    margin-bottom: 10px;
    padding-left: 2px;
}

.mock-workout-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: white;
}

.mock-workout-focus {
    font-size: 0.7rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin-top: 1px;
}

.mock-item-workout-meta {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 600;
}

.mock-item-swap {
    color: var(--text-muted);
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-left: auto;
}

.mock-item-swap:hover {
    color: var(--accent-orange);
}

.mock-regenerate-btn {
    background: #151520;
    border: 1px dashed var(--accent-orange);
    border-radius: 10px;
    padding: 8px;
    color: var(--accent-orange);
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    margin-top: 4px;
    transition: var(--transition-smooth);
}

.mock-regenerate-btn:hover {
    background: rgba(255, 138, 0, 0.1);
}

/* --- NEW MOCKUP UI COMPONENTS BASED ON APP SCREENSHOTS --- */

.mock-card {
    background: #1C1C23;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

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

.mock-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

/* Dashboard Specifics */
.mock-nutrition-split {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mock-nut-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #111;
    border: 4px solid #2A2A35;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mock-nut-circle-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.mock-nut-circle-inner .nut-val { font-size: 1.1rem; font-weight: 800; color: white; line-height: 1; }
.mock-nut-circle-inner .nut-lbl { font-size: 0.5rem; color: var(--text-muted); font-weight: 600; margin-top: 2px;}

.mock-nut-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mock-bar-row { display: flex; flex-direction: column; gap: 4px; }
.mock-bar-lbl { font-size: 0.65rem; font-weight: 600; color: white; }
.mock-bar-val { font-size: 0.65rem; color: var(--text-muted); }

.mock-bar-track {
    width: 100%;
    height: 4px;
    background: #2A2A35;
    border-radius: 4px;
    overflow: hidden;
}

.mock-bar-fill {
    height: 100%;
    border-radius: 4px;
}

.mock-fuel-item { display: flex; gap: 10px; align-items: center; }
.mock-fuel-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(16, 185, 129, 0.1); display: flex; justify-content: center; align-items: center; font-size: 0.8rem; }
.mock-fuel-info { flex: 1; }
.mock-fuel-tag { font-size: 0.55rem; color: #FCD34D; font-weight: 700; letter-spacing: 0.5px; }
.mock-fuel-name { font-size: 0.75rem; color: white; margin: 2px 0; line-height: 1.2; }
.mock-fuel-meta { font-size: 0.6rem; color: var(--text-muted); }

.mock-burn-stats { margin-top: 8px; }
.mock-burn-big { font-size: 1.6rem; font-weight: 800; color: white; }
.mock-burn-small { font-size: 0.75rem; color: var(--text-muted); font-weight: 600;}

/* Meals / Fitness Specifics */
.mock-page-header { margin-bottom: 12px; }
.mock-page-header h2 { font-size: 1.2rem; color: white; margin-bottom: 2px; }
.mock-page-header span { font-size: 0.75rem; font-weight: 600; }

.mock-grocery-btn {
    background: #1C1C23;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.mock-meal-header { display: flex; gap: 10px; margin-bottom: 8px; }
.mock-meal-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; justify-content: center; align-items: center; color: white; font-size: 0.8rem; }
.mock-meal-type { font-size: 0.6rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.5px;}
.mock-meal-cal { font-size: 0.7rem; color: var(--text-muted); }
.mock-meal-title { font-size: 0.85rem; color: white; line-height: 1.2; margin-top: 2px;}

.mock-meal-desc { font-size: 0.65rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.4;}

.mock-tags { display: flex; gap: 6px; margin-bottom: 12px; }
.mock-tag { background: rgba(255,255,255,0.1); color: #ccc; font-size: 0.55rem; padding: 3px 6px; border-radius: 4px; font-weight: 600;}
.mock-tag-orange { background: rgba(255, 138, 0, 0.15); color: var(--accent-orange); }

.mock-action-row { display: flex; gap: 8px; }
.mock-btn { flex: 1; padding: 8px 0; border-radius: 6px; font-size: 0.75rem; font-weight: 600; display: flex; justify-content: center; align-items: center; gap: 6px; cursor: pointer;}
.mock-btn-green { background: var(--primary-green); color: white; }
.mock-btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: white; }

.mock-exercise-header { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px;}
.mock-ex-num { width: 24px; height: 24px; border-radius: 50%; background: rgba(255, 138, 0, 0.15); color: var(--accent-orange); display: flex; justify-content: center; align-items: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0;}
.mock-ex-info { flex: 1; }
.mock-ex-title { font-size: 0.9rem; color: white; margin-bottom: 4px;}
.mock-ex-play { width: 28px; height: 28px; border-radius: 50%; background: var(--accent-orange); color: white; display: flex; justify-content: center; align-items: center; font-size: 0.75rem; flex-shrink: 0;}

.mock-ex-pills { display: flex; gap: 8px; margin-bottom: 10px; }
.mock-pill { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 4px 10px; font-size: 0.65rem; color: white; display: flex; align-items: center; gap: 4px;}

.mock-ex-tip { font-size: 0.65rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 10px;}

.mock-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 10px 0; width: 100%;}
.mock-feedback-lbl { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 8px;}
.mock-feedback-row { display: flex; gap: 6px; justify-content: space-between;}
.mock-f-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 6px 8px; font-size: 0.65rem; color: white; display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center;}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-dot.green { background: var(--primary-green); }

/* --- NEW ADDITIONS FOR DASHBOARD GRAPHS & MOMENTUM --- */

.mock-icon-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.8rem;
}

/* 90-Day Momentum Calendar */
.mock-momentum-container {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.mock-momentum-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.5rem;
    color: var(--text-muted);
    padding-bottom: 16px; 
}

.mock-momentum-month {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

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

.mock-momentum-sq {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
}

.mock-momentum-sq.active {
    background: rgba(255,255,255,0.2);
}

.mock-month-lbl {
    font-size: 0.55rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 2px;
}

/* Weight Journey Chart */
.mock-target-badge {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mock-chart-container {
    margin-top: 10px;
    position: relative;
    padding-bottom: 5px;
}

.mock-chart-x-axis {
    display: flex;
    justify-content: space-between;
    font-size: 0.5rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Large Orange CTA Button */
.mock-btn-orange-lg {
    background: linear-gradient(135deg, #FF8A00 0%, #FFB800 100%);
    color: white;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 4px;
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
    transition: var(--transition-smooth);
}

.mock-btn-orange-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 0, 0.4);
}

/* --- INTERNAL PAGE HEADERS & LAYOUTS --- */
.page-header-section {
    padding: 10rem 2rem 4rem;
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* --- LEGAL CONTENT --- */
.legal-container {
    max-width: 800px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.legal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    color: var(--text-secondary);
}

.legal-content h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.legal-highlight {
    background: rgba(255, 71, 133, 0.1);
    border-left: 3px solid var(--primary-pink);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
    color: var(--text-primary);
}

/* --- SUPPORT FUNNEL --- */
.support-container {
    max-width: 1000px;
    margin: 0 auto 8rem;
    padding: 0 2rem;
}

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

.support-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.support-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.support-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex: 1;
}

.cursor {
    display: inline-block;
    margin-left: 4px;
    color: var(--primary-pink);
    font-weight: 300;
    animation: blink 1s step-end infinite;
}

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