/* ============================================
   WhisperPlan Landing Page Styles
   Inspired by: PasteApp, CleanShot, SetApp, Apple
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - matching app's LiquidGlassStyle */
    --color-bg-primary: #0A1424;
    --color-bg-secondary: #0D1A2D;
    --color-bg-card: rgba(255, 255, 255, 0.04);
    --color-bg-elevated: rgba(255, 255, 255, 0.06);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-strong: rgba(255, 255, 255, 0.12);
    
    /* Brand gradient */
    --color-accent-start: #266BB3;
    --color-accent-end: #408CD9;
    --color-accent: #408CE6;
    --color-accent-light: #5A9FE8;
    
    /* Semantic colors */
    --color-success: #34D399;
    --color-warning: #FF8C40;
    --color-error: #F25959;
    
    /* Text colors */
    --color-text-primary: rgba(255, 255, 255, 0.95);
    --color-text-secondary: rgba(255, 255, 255, 0.60);
    --color-text-tertiary: rgba(255, 255, 255, 0.40);
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--color-accent-start) 0%, var(--color-accent-end) 100%);
    --gradient-glow: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'SF Pro Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 400ms ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(38, 107, 179, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(64, 140, 217, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 0% 80%, rgba(38, 107, 179, 0.1) 0%, transparent 50%),
        var(--color-bg-primary);
    background-attachment: fixed;
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Floating Orbs - Atmospheric Background */
.floating-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

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

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    top: 10%;
    right: -10%;
    animation-duration: 25s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-accent-light) 0%, transparent 70%);
    top: 50%;
    left: -5%;
    animation-duration: 20s;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--color-accent-start) 0%, transparent 70%);
    bottom: 10%;
    right: 20%;
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.05); }
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    background: rgba(10, 20, 36, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: 18px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-links a {
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.nav-cta {
    padding: var(--space-sm) var(--space-md);
    background: var(--gradient-brand);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(64, 140, 217, 0.4);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px var(--space-lg) 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-glow-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--color-accent) 0%, var(--color-accent-start) 50%, transparent 70%);
    top: -250px;
    right: -150px;
    animation-delay: 0s;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-accent-light) 0%, var(--color-accent-end) 50%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: -4s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-grid-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-3xl);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 14px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px rgba(64, 140, 217, 0.6);
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 4px 20px rgba(64, 140, 217, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(64, 140, 217, 0.4);
}

.btn-secondary {
    background: var(--color-bg-elevated);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-bg-card);
    border-color: var(--color-border-strong);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 18px 32px;
    font-size: 17px;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.apple-icon {
    width: 22px;
    height: 22px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.phone-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 44px;
    padding: 12px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(64, 140, 217, 0.2);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 32px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-bg-primary);
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    padding: 60px 20px 16px;
}

.app-title {
    font-size: 28px;
    font-weight: 700;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mic-button {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
}

.mic-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(64, 140, 230, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: micPulse 2s ease-in-out infinite;
}

@keyframes micPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.mic-circle {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mic-circle svg {
    width: 36px;
    height: 36px;
    color: var(--color-text-primary);
}

.mic-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.mic-label {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.app-notes {
    padding: 16px;
    border-top: 1px solid var(--color-border);
}

.notes-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.notes-scroll {
    display: flex;
    gap: 10px;
    overflow: hidden;
}

.note-card {
    flex-shrink: 0;
    width: 100px;
    padding: 10px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 11px;
}

.note-wave {
    font-size: 10px;
    margin-bottom: 4px;
}

.note-time {
    color: var(--color-text-tertiary);
    display: block;
}

.note-date {
    font-weight: 500;
    display: block;
    margin: 4px 0;
}

.note-tasks {
    color: var(--color-accent);
    display: block;
}

.phone-reflection {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%) scaleY(-1);
    width: 280px;
    height: 200px;
    background: linear-gradient(to bottom, rgba(64, 140, 217, 0.1) 0%, transparent 100%);
    filter: blur(20px);
    opacity: 0.3;
    border-radius: 44px;
}

/* ============================================
   Social Proof
   ============================================ */

.social-proof {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: 
        radial-gradient(ellipse 80% 100% at 50% 50%, rgba(64, 140, 217, 0.06) 0%, transparent 50%),
        var(--color-bg-secondary);
}

.social-proof .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.proof-text {
    font-size: 14px;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.proof-logos {
    display: flex;
    gap: var(--space-3xl);
    align-items: center;
}

.proof-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-secondary);
    font-size: 14px;
}

.proof-logo svg {
    color: var(--color-accent-light);
    filter: drop-shadow(0 0 4px rgba(64, 140, 217, 0.3));
    font-weight: 500;
}

.proof-logo svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   Section Styles
   ============================================ */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

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

/* ============================================
   Features Section
   ============================================ */

.features {
    padding: var(--space-4xl) 0;
    position: relative;
    background: 
        radial-gradient(ellipse 50% 80% at 20% 20%, rgba(38, 107, 179, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 40% 60% at 80% 80%, rgba(64, 140, 217, 0.08) 0%, transparent 50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    padding: var(--space-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-strong);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-large {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.feature-large .feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-lg);
}

.feature-large .feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-large h3 {
    font-size: 24px;
    margin-bottom: var(--space-md);
}

.feature-large p {
    font-size: 16px;
    line-height: 1.7;
}

/* Unified brand gradient style for all feature icons - matching the logo */
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    background: linear-gradient(145deg, rgba(38, 107, 179, 0.25) 0%, rgba(64, 140, 217, 0.15) 100%);
    border: 1px solid rgba(64, 140, 217, 0.3);
    color: var(--color-accent-light);
    box-shadow: 
        0 4px 16px rgba(64, 140, 217, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 6px rgba(64, 140, 217, 0.5));
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

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

/* ============================================
   How it Works
   ============================================ */

.how-it-works {
    padding: var(--space-4xl) 0;
    position: relative;
    background: 
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(64, 140, 217, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 0% 100%, rgba(38, 107, 179, 0.08) 0%, transparent 50%),
        var(--color-bg-secondary);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-lg);
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin: 0 auto var(--space-lg);
}

.step-visual {
    margin-bottom: var(--space-lg);
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-text-primary);
}

.step-icon-record {
    background: linear-gradient(145deg, rgba(38, 107, 179, 0.15) 0%, rgba(64, 140, 217, 0.1) 100%);
    border-color: rgba(64, 140, 217, 0.3);
}

.step-icon-record svg {
    color: var(--color-accent-light);
    filter: drop-shadow(0 0 8px rgba(64, 140, 217, 0.5));
}

.pulse-ring {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

.step-icon-analyze {
    background: rgba(64, 140, 217, 0.1);
    border-color: rgba(64, 140, 217, 0.3);
    overflow: hidden;
}

.step-icon-analyze svg {
    color: var(--color-accent);
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    animation: scan 2s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { top: 0; }
    50% { top: 100%; }
}

.step-icon-done {
    background: linear-gradient(145deg, rgba(38, 107, 179, 0.15) 0%, rgba(64, 140, 217, 0.1) 100%);
    border-color: rgba(64, 140, 217, 0.3);
}

.step-icon-done svg {
    color: var(--color-accent-light);
    filter: drop-shadow(0 0 8px rgba(64, 140, 217, 0.5));
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

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

.step-arrow {
    flex-shrink: 0;
    margin-top: 100px;
    color: var(--color-text-tertiary);
}

.step-arrow svg {
    width: 32px;
    height: 32px;
}

/* ============================================
   Demo Section
   ============================================ */

.demo-section {
    padding: var(--space-4xl) 0;
    position: relative;
    background: 
        radial-gradient(ellipse 70% 50% at 100% 50%, rgba(64, 140, 217, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 60% at 0% 30%, rgba(38, 107, 179, 0.06) 0%, transparent 50%);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.demo-text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.demo-text p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.demo-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.demo-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 15px;
}

.demo-features svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-light);
    filter: drop-shadow(0 0 4px rgba(64, 140, 217, 0.4));
    flex-shrink: 0;
}

.demo-visual {
    display: flex;
    justify-content: center;
}

.tasks-preview {
    width: 100%;
    max-width: 380px;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.preview-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-title {
    font-size: 24px;
    font-weight: 700;
}

.preview-count {
    font-size: 13px;
    color: var(--color-text-tertiary);
}

.preview-section {
    padding: var(--space-md) var(--space-lg);
}

.preview-section-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent-light);
    margin-bottom: var(--space-md);
    display: block;
}

.preview-section:last-child .preview-section-title {
    color: var(--color-accent);
}

.preview-task {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.task-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-border-strong);
    border-radius: 50%;
    flex-shrink: 0;
}

.task-content {
    flex: 1;
    min-width: 0;
}

.task-title {
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.task-meta {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.task-project {
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    background: color-mix(in srgb, var(--project-color) 20%, transparent);
    color: var(--project-color);
}

.task-priority {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.task-priority.high {
    background: rgba(64, 140, 217, 0.2);
    color: var(--color-accent-light);
}

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

/* ============================================
   Pricing Section
   ============================================ */

.pricing {
    padding: var(--space-4xl) 0;
    position: relative;
    background: 
        radial-gradient(ellipse 50% 60% at 30% 0%, rgba(64, 140, 217, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(38, 107, 179, 0.08) 0%, transparent 50%),
        var(--color-bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    padding: var(--space-xl);
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card-featured {
    border-color: var(--color-accent);
    box-shadow: 0 0 60px rgba(64, 140, 217, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-brand);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border);
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

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

.price {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-display);
}

.period {
    font-size: 16px;
    color: var(--color-text-secondary);
}

.pricing-annual {
    font-size: 13px;
    color: var(--color-accent-light);
    margin-top: var(--space-sm);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 14px;
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-light);
    filter: drop-shadow(0 0 4px rgba(64, 140, 217, 0.4));
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   CTA Section
   ============================================ */

.cta {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-glow {
    position: absolute;
    width: 1000px;
    height: 500px;
    background: radial-gradient(ellipse, var(--color-accent) 0%, var(--color-accent-start) 30%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    filter: blur(120px);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.35; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.cta p {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.cta-note {
    font-size: 14px;
    color: var(--color-text-tertiary);
    margin-top: var(--space-md);
}

/* ============================================
   Legal Pages
   ============================================ */

.legal-page {
    padding: 120px 0 var(--space-4xl);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: var(--space-md);
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-updated {
    color: var(--color-text-tertiary);
    font-size: 14px;
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.legal-section {
    margin-bottom: var(--space-3xl);
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--color-text-primary);
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--color-accent-light);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.legal-section ul {
    list-style: none;
    margin: var(--space-lg) 0;
    padding-left: 0;
}

.legal-section ul li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-sm);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.legal-section ul li::before {
    content: "•";
    position: absolute;
    left: var(--space-md);
    color: var(--color-accent);
    font-weight: 700;
}

.legal-section a {
    color: var(--color-accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
}

.legal-section a:hover {
    color: var(--color-accent);
}

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

.legal-back {
    margin-top: var(--space-4xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-4xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: var(--space-md);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
    font-size: 13px;
    color: var(--color-text-tertiary);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero-grid-layout {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 var(--space-xl);
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: var(--space-3xl);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .demo-text {
        order: 1;
    }
    
    .demo-visual {
        order: 2;
    }
    
    .demo-features {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .phone-frame {
        width: 240px;
        height: 500px;
    }
    
    .steps {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .step-arrow {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-large {
        grid-column: span 1;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .proof-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .phone-frame {
        width: 220px;
        height: 460px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

