/* Landing Page Styles - Enhanced Glassmorphism */

html {
    scroll-behavior: smooth;
}

/* Override body pseudo-elements for landing page */
.landing-page {
    overflow-x: hidden;
}

.landing-page::before,
.landing-page::after {
    display: none;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
    animation: float-orb 25s ease-in-out infinite;
    will-change: transform;
}

.bg-orb-1 {
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, var(--flog-lime) 0%, var(--flog-green) 100%);
    top: -300px;
    right: -200px;
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--appetite-orange) 0%, #FFB74D 100%);
    bottom: 10%;
    left: -200px;
    animation-delay: -8s;
    opacity: 0.25;
}

.bg-orb-3 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-blue) 100%);
    top: 40%;
    right: -150px;
    animation-delay: -16s;
    opacity: 0.3;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -40px) scale(1.08); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(25px, 15px) scale(1.03); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.landing-nav .nav-brand {
    display: flex;
    flex-direction: column;
}

.landing-nav .nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-tagline {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 400;
    margin-top: 0.125rem;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-actions {
    display: flex;
    gap: 0.75rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 4rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 620px;
}

/* Hero Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.12), rgba(124, 179, 66, 0.15));
    border: 1px solid rgba(124, 179, 66, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--flog-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eyebrow-text {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.hero-title {
    font-size: 4.25rem;
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-primary);
    letter-spacing: -2.5px;
    margin-bottom: 1.5rem;
}

.highlight-flog {
    background: linear-gradient(135deg, var(--flog-green), var(--flog-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
    border-radius: 14px;
    font-weight: 600;
}

.hero-cta .btn-primary {
    animation: subtle-pulse 3s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.35);
}

@keyframes subtle-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(45, 80, 22, 0.35); }
    50% { box-shadow: 0 6px 24px rgba(45, 80, 22, 0.5); }
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* Platform Logos */
.hero-platforms {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.platforms-label {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.platform-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.platform-logo {
    display: inline-flex;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: -0.2px;
}

.platform-logo-more {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    font-style: italic;
}

/* Hero Visual - Phone Frame */
.hero-visual {
    flex: 1;
    max-width: 420px;
    position: relative;
}

.phone-frame {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.25),
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-notch {
    width: 100px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    background: linear-gradient(180deg, #FAFAF8 0%, #f5f5f3 100%);
    border-radius: 32px;
    padding: 3rem 1.25rem 1.5rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

/* Mock Cards in Phone */
.phone-screen .mock-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.phone-screen .mock-stats {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 1.25rem;
}

.mock-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.mock-stat-label {
    font-size: 0.6875rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Dish Card with Photo */
.phone-screen .mock-dish {
    display: flex;
    gap: 0.875rem;
    align-items: center;
    position: relative;
}

.mock-dish-photo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-dish-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.mock-dish-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.mock-dish-restaurant {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.mock-rating {
    display: flex;
    gap: 1px;
    margin-top: 0.125rem;
}

.mock-rating .star {
    font-size: 0.75rem;
    color: #d1d1d6;
}

.mock-rating .star.filled {
    color: var(--star-color);
}

.mock-dish-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mock-dish-badge.favorite {
    background: linear-gradient(135deg, #ff6b6b, #e53935);
    color: white;
}

/* Do Not Order Card */
.mock-dno {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.08), rgba(255, 59, 48, 0.04)) !important;
    border: 1px solid rgba(255, 59, 48, 0.15) !important;
}

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

.dno-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.dno-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e53935;
}

.dno-dish {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* Float Animation */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

.float-animation.delay-float {
    animation-delay: -3s;
}

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

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 6rem 2rem;
}

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

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -1.5px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(255, 248, 225, 0.3) 100%);
    padding: 5rem 2rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.problem-card {
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.problem-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.problem-quote {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
}

.problem-solution {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.problem-solution strong {
    color: var(--text-primary);
}

/* ============================================
   UNIFIED SECTION (All Platforms)
   ============================================ */
.unified-section {
    background: linear-gradient(180deg, rgba(255, 248, 225, 0.3) 0%, var(--bg-primary) 100%);
    padding: 6rem 2rem;
}

.unified-content {
    text-align: center;
    margin-bottom: 3rem;
}

.unified-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--appetite-orange);
    margin-bottom: 0.5rem;
}

.unified-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
}

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

.unified-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.receipt-stack {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.receipt-card {
    padding: 1rem 1.25rem;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.receipt-card:hover {
    transform: translateY(-4px) rotate(-1deg);
}

.receipt-platform {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.receipt-platform.doordash {
    background: rgba(255, 59, 48, 0.1);
    color: #e53935;
}

.receipt-platform.ubereats {
    background: rgba(6, 199, 85, 0.1);
    color: #06c755;
}

.receipt-platform.grubhub {
    background: rgba(255, 111, 0, 0.1);
    color: var(--appetite-orange);
}

.receipt-preview {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.receipt-restaurant {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.receipt-items {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.arrow-merge {
    color: var(--flog-lime);
}

.unified-result {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)) !important;
    border: 2px solid var(--flog-lime) !important;
    box-shadow: 0 8px 32px rgba(45, 80, 22, 0.12);
}

.unified-logo {
    width: 40px;
    height: auto;
}

.unified-result-text {
    font-weight: 600;
    color: var(--text-primary);
}

.unified-result-count {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: var(--bg-primary);
    padding: 6rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.9375rem;
}

/* ============================================
   YEAR IN REVIEW SECTION
   ============================================ */
.year-review-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(255, 248, 225, 0.4) 100%);
    padding: 6rem 2rem;
    overflow: hidden;
}

.year-review-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.year-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, var(--appetite-orange), #FFB74D);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.year-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.year-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.year-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.year-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.year-check {
    color: var(--flog-green);
    font-weight: 700;
    flex-shrink: 0;
}

.year-cta-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

/* Year Preview Card */
.year-preview-card {
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)) !important;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.year-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--divider);
}

.year-preview-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.year-preview-user {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.year-preview-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    text-align: center;
}

.year-stat {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.year-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.year-stat-label {
    font-size: 0.6875rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.year-preview-top {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.year-preview-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
    display: block;
}

.year-top-dish {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.year-dish-emoji {
    font-size: 2rem;
}

.year-dish-info {
    display: flex;
    flex-direction: column;
}

.year-dish-name {
    font-weight: 600;
    color: var(--text-primary);
}

.year-dish-count {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.year-preview-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.08), rgba(124, 179, 66, 0.1));
    border-radius: 10px;
}

.badge-icon {
    font-size: 1.25rem;
}

.badge-text {
    flex: 1;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.badge-tier {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-tier.gold {
    background: linear-gradient(135deg, #FFD700, #FFA000);
    color: #5d4000;
}

/* ============================================
   PRO SECTION
   ============================================ */
.pro-section {
    background: linear-gradient(180deg, rgba(255, 248, 225, 0.4) 0%, #1a1a1a 100%);
    padding: 6rem 2rem 8rem;
}

.pro-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pro-badge-large {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--appetite-orange), #FFB74D);
    color: white;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

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

.pro-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pro-feature {
    padding: 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.95) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pro-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.pro-feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pro-feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pro-feature p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.pro-feature-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, var(--appetite-orange), #FFB74D);
    color: white;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-section {
    background: #1a1a1a;
    padding: 6rem 2rem;
}

.how-section .section-title,
.how-section .section-subtitle {
    color: white;
}

.how-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.timeline {
    max-width: 550px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 32px;
    bottom: 32px;
    width: 2px;
    background: linear-gradient(180deg, var(--flog-lime), var(--flog-green));
    opacity: 0.5;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem 0;
    position: relative;
}

.timeline-marker {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--flog-lime), var(--flog-green));
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(124, 179, 66, 0.4);
}

.timeline-content {
    padding-top: 0.625rem;
}

.timeline-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.375rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* ============================================
   OBJECTION SECTION
   ============================================ */
.objection-section {
    background: #1a1a1a;
    padding: 4rem 2rem;
}

.objection-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
}

.objection-card h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.objection-card p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.objection-punchline {
    font-weight: 700;
    color: var(--flog-lime) !important;
    font-size: 1.25rem !important;
    margin-top: 1.5rem !important;
}

/* ============================================
   VAULT SECTION (Privacy)
   ============================================ */
.vault-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
    padding: 6rem 2rem;
    overflow: hidden;
}

.vault-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Safe Box */
.vault-safe {
    width: 260px;
    height: 260px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    position: relative;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.05),
        inset 0 -1px 1px rgba(0, 0, 0, 0.3);
    border: 3px solid #333;
}

/* Combination Dial */
.vault-dial {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
}

.dial-outer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, #4a4a4a, #2d2d2d);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.4),
        inset 0 2px 3px rgba(255, 255, 255, 0.1),
        inset 0 -2px 3px rgba(0, 0, 0, 0.2);
    border: 2px solid #3a3a3a;
}

/* Dial ticks */
.dial-tick {
    position: absolute;
    width: 3px;
    height: 10px;
    background: #666;
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
}

.dial-tick-1 { top: 8px; }
.dial-tick-2 { bottom: 8px; }
.dial-tick-3 {
    top: 50%;
    left: 8px;
    transform: translateY(-50%) rotate(90deg);
}
.dial-tick-4 {
    top: 50%;
    left: auto;
    right: 8px;
    transform: translateY(-50%) rotate(90deg);
}

/* Dial marker (the red indicator) */
.dial-marker {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--flog-lime);
    filter: drop-shadow(0 0 4px rgba(124, 179, 66, 0.5));
}

.dial-inner {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(145deg, #333, #222);
    box-shadow:
        inset 0 3px 6px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(255, 255, 255, 0.05);
}

.dial-grip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #555, #2a2a2a);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.dial-grip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a1a1a;
}

/* Safe Content Area */
.safe-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
}

.safe-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--flog-lime);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 15px rgba(124, 179, 66, 0.4);
}

.safe-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(124, 179, 66, 0.1);
    border: 1px solid rgba(124, 179, 66, 0.3);
    border-radius: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--flog-lime);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(124, 179, 66, 0.6);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.status-text {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--flog-lime);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vault Text Content */
.vault-text {
    color: white;
}

.vault-headline {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.vault-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.vault-description strong {
    color: white;
}

.vault-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.vault-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.vault-x {
    color: #e53935;
    font-weight: 700;
    font-size: 0.75rem;
}

.vault-punchline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.vault-punchline span {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--flog-lime);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: var(--bg-primary);
    padding: 6rem 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

/* Free Card */
.pricing-card {
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--divider);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.feature-emoji {
    font-size: 1.125rem;
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Pro Card - Special Design */
.pricing-card-pro {
    position: relative;
    border-radius: 24px;
}

.pro-card-glow {
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--flog-lime), var(--appetite-orange), var(--flog-green));
    border-radius: 26px;
    z-index: 0;
    animation: glow-rotate 4s linear infinite;
    background-size: 200% 200%;
}

@keyframes glow-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pro-card-inner {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    border-radius: 22px;
    background: white !important;
}

.pricing-card-pro .pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--appetite-orange), #FFB74D);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
    z-index: 2;
}

.pro-includes {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--divider);
}

.pro-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.75rem;
}

.pro-feature-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.625rem 0.875rem;
    background: linear-gradient(135deg, rgba(255, 248, 225, 0.5), rgba(255, 255, 255, 0.8));
    border-radius: 12px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pro-feature-item:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pro-feature-icon {
    font-size: 1.5rem;
    width: 2.25rem;
    text-align: center;
    flex-shrink: 0;
}

.pro-feature-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.pro-feature-text strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pro-feature-text span {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.new-badge {
    background: linear-gradient(135deg, var(--appetite-orange), #FFB74D);
    color: white;
    font-size: 0.5625rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-pro {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--flog-green), #3a6a1c);
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.3);
}

.btn-pro:hover {
    background: linear-gradient(135deg, #3a6a1c, var(--flog-green));
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.pricing-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    margin-top: 0.75rem;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 6rem 2rem 8rem;
    background: var(--bg-primary);
}

.cta-card {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)) !important;
    border: 1px solid rgba(124, 179, 66, 0.3) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.cta-floggy {
    width: 80px;
    height: auto;
    margin-bottom: 1.5rem;
    animation: floggy-bounce 3s ease-in-out infinite;
}

@keyframes floggy-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-3deg); }
    75% { transform: translateY(-5px) rotate(3deg); }
}

.cta-card h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-card p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-card .btn {
    margin-bottom: 1rem;
}

.cta-subtext {
    display: block;
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* ============================================
   FOOTER
   ============================================ */
.landing-footer {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.footer-logo {
    width: 28px;
    height: auto;
}

.footer-tagline {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.fade-in-up.delay-1 { transition-delay: 0.15s; }
.fade-in-up.delay-2 { transition-delay: 0.3s; }

/* Hero elements visible immediately */
.hero .fade-in-up {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero .fade-in-up.delay-1 { animation-delay: 0.15s; }
.hero .fade-in-up.delay-2 { animation-delay: 0.3s; }

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

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 7rem 2rem 4rem;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .hero-title {
        font-size: 3.25rem;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-cta {
        align-items: center;
    }

    .hero-platforms {
        align-items: center;
    }

    .hero-visual {
        max-width: 360px;
    }

    .year-review-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pro-features-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

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

@media (max-width: 768px) {
    .landing-nav {
        padding: 0.875rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-tagline {
        display: none;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .phone-screen {
        min-height: 420px;
        padding: 2.5rem 1rem 1.25rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto 2rem;
    }

    .receipt-stack {
        flex-direction: column;
        align-items: center;
    }

    /* Vault responsive */
    .vault-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .vault-safe {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .vault-dial {
        width: 90px;
        height: 90px;
        top: 20px;
    }

    .dial-inner {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .dial-grip {
        width: 24px;
        height: 24px;
    }

    .dial-tick {
        width: 2px;
        height: 8px;
    }

    .safe-content {
        bottom: 20px;
    }

    .safe-label {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .safe-status {
        padding: 0.25rem 0.75rem;
    }

    .status-text {
        font-size: 0.5625rem;
    }

    .vault-headline {
        font-size: 1.75rem;
    }

    .vault-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .vault-list li {
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .pricing-card-pro .pricing-badge {
        top: -10px;
        font-size: 0.625rem;
        padding: 0.375rem 1rem;
    }

    .pro-card-inner {
        padding: 2rem 1.5rem;
    }

    .pro-feature-item {
        padding: 0.5rem 0.75rem;
    }

    .pro-feature-icon {
        font-size: 1.25rem;
        width: 2rem;
    }

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

    .bg-orb {
        opacity: 0.25;
    }

    .bg-orb-1 {
        width: 450px;
        height: 450px;
    }

    .bg-orb-2 {
        width: 350px;
        height: 350px;
    }

    .bg-orb-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .year-title,
    .pro-title,
    .unified-title,
    .privacy-title {
        font-size: 1.75rem;
    }

    .cta-card h2 {
        font-size: 1.75rem;
    }
}
