/* MapMyPeople - Modern Landing */

:root {
    --bg: #09090b;
    --bg-subtle: #18181b;
    --bg-muted: #27272a;
    
    --primary: #f97316;
    --primary-light: #fb923c;
    --primary-dark: #ea580c;
    --primary-glow: rgba(249, 115, 22, 0.4);
    
    --accent: #22c55e;
    
    --text: #fafafa;
    --text-muted: #a1a1aa;
    --text-subtle: #71717a;
    
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --font: 'Outfit', system-ui, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Gradient background */
.gradient-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    transition: transform 0.3s ease-out;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-glow);
    top: -200px;
    right: -100px;
    opacity: 0.6;
}

.sphere-2 {
    width: 400px;
    height: 400px;
    background: rgba(34, 197, 94, 0.2);
    bottom: 20%;
    left: -100px;
    opacity: 0.4;
}

.sphere-3 {
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.3);
    bottom: -100px;
    right: 30%;
    opacity: 0.5;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1.2rem;
}

.brand-logo {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.brand-logo svg {
    width: 28px;
    height: 28px;
}

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

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

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

.btn-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 999px;
    transition: all 0.2s;
}

.btn-nav:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-badge {
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.75rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 24px 80px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

/* Social proof */
.hero-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--bg);
    margin-left: -12px;
    object-fit: cover;
}

.avatars img:first-child {
    margin-left: 0;
}

.avatar-count {
    width: 40px;
    height: 40px;
    background: var(--bg-muted);
    border: 3px solid var(--bg);
    border-radius: 50%;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.social-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.social-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.app-preview {
    position: relative;
    z-index: 2;
}

.app-window {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.window-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-muted);
    border-bottom: 1px solid var(--border);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-subtle);
}

.window-dots span:first-child { background: #ef4444; }
.window-dots span:nth-child(2) { background: #fbbf24; }
.window-dots span:nth-child(3) { background: #22c55e; }

.window-title {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.window-content {
    padding: 24px;
    min-height: 350px;
    position: relative;
}

/* 3D Globe */
.globe-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.globe-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    transform-style: preserve-3d;
    animation: globeRotate 20s linear infinite;
}

@keyframes globeRotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.globe-sphere {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 30%, #1a202c 60%, #2b6cb0 100%);
    box-shadow: 
        inset -30px -30px 60px rgba(0, 0, 0, 0.6),
        inset 10px 10px 30px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(100, 180, 255, 0.3),
        0 0 100px rgba(100, 180, 255, 0.1);
}

.globe-shine {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
}

/* Connection arcs */
.globe-connections {
    position: absolute;
    inset: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    pointer-events: none;
}

.arc {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawArc 2s ease forwards;
    filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.6));
}

.arc-1 { animation-delay: 0.3s; }
.arc-2 { animation-delay: 0.6s; }
.arc-3 { animation-delay: 0.9s; }
.arc-4 { animation-delay: 1.2s; }
.arc-5 { animation-delay: 1.5s; }

@keyframes drawArc {
    to { stroke-dashoffset: 0; }
}

/* Globe points */
.globe-points {
    position: absolute;
    inset: 0;
    animation: globeRotate 20s linear infinite reverse;
}

.globe-point {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: 
        rotate(var(--angle)) 
        translateX(var(--distance)) 
        rotate(calc(-1 * var(--angle)));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.point-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.point-dot.green {
    background: var(--accent);
}

.globe-point.origin .point-dot {
    width: 16px;
    height: 16px;
    background: var(--primary);
    box-shadow: 0 0 16px rgba(249, 115, 22, 0.8);
}

.point-pulse {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
    animation: pointPulse 2s ease-out infinite;
}

@keyframes pointPulse {
    0% { transform: scale(0.5); opacity: 0.6; }
    100% { transform: scale(2); opacity: 0; }
}

.point-label {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Globe stats */
.globe-stats {
    display: flex;
    gap: 32px;
}

.globe-stat {
    text-align: center;
}

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

.stat-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Preview cards */
.preview-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    animation: slideUp 0.5s ease-out backwards;
}

.card-1 { animation-delay: 0.3s; }
.card-2 { animation-delay: 0.5s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.card-avatar {
    position: relative;
}

.card-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border: 2px solid var(--bg-subtle);
    border-radius: 50%;
}

.card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-info strong {
    font-size: 0.95rem;
}

.card-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-btn {
    padding: 8px 16px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.card-btn:hover {
    background: var(--primary-light);
}

/* Notifications */
.notif {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

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

.notif-1 {
    top: 20px;
    right: -30px;
    animation: float 4s ease-in-out infinite;
}

.notif-2 {
    bottom: 60px;
    left: -40px;
    animation: float 4s ease-in-out infinite 2s;
}

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

.notif-icon {
    font-size: 1.3rem;
}

/* Trust Section */
.trust {
    padding: 60px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust p {
    color: var(--text-subtle);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.trust-flags {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 2rem;
    opacity: 0.7;
}

/* Features Bento */
.features {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

.bento-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.bento-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.bento-card:hover {
    border-color: var(--primary);
    background: rgba(249, 115, 22, 0.05);
}

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

.bento-wide {
    grid-column: span 2;
}

.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Bento visuals */
.bento-visual {
    flex: 1;
    margin-top: 24px;
}

.map-demo {
    position: relative;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0f 100%);
    border-radius: var(--radius-lg);
    min-height: 200px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-globe {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    animation: miniGlobeRotate 15s linear infinite;
}

@keyframes miniGlobeRotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.mini-globe-sphere {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 30%, #1a202c 60%, #2b6cb0 100%);
    box-shadow: 
        inset -15px -15px 30px rgba(0, 0, 0, 0.6),
        inset 5px 5px 15px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(100, 180, 255, 0.2);
}

.mini-globe-shine {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        transparent 40%
    );
}

.orbit-ring {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 1px dashed rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    animation: orbitSpin 20s linear infinite;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-point {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: orbitSpin 20s linear infinite;
}

.orbit-point.p1 { top: 20%; left: 80%; animation-delay: 0s; }
.orbit-point.p2 { top: 70%; left: 15%; animation-delay: -6.6s; }
.orbit-point.p3 { top: 85%; left: 60%; animation-delay: -13.3s; }

.orbit-point.origin-point {
    width: 14px;
    height: 14px;
    background: var(--primary);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
    top: 30%;
    left: 10%;
    animation-delay: -3.3s;
}

.events-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.event-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--bg-muted);
    border-radius: 999px;
    font-size: 0.85rem;
}

.event-date {
    padding: 4px 8px;
    background: var(--primary);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Download Section */
.download-section {
    padding: 120px 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.download-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.download-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.download-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.download-card:hover {
    border-color: var(--primary);
    background: rgba(249, 115, 22, 0.05);
}

.download-android {
    border-color: rgba(34, 197, 94, 0.3);
}

.download-android:hover {
    border-color: var(--accent);
    background: rgba(34, 197, 94, 0.05);
}

.download-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--glass);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    color: var(--text);
}

.download-android .download-icon {
    color: var(--accent);
}

.download-ios .download-icon {
    color: var(--text-muted);
}

.download-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.download-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    transition: all 0.2s;
    font-family: var(--font);
}

.btn-download:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.download-version {
    display: block;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-subtle);
}

.ios-notify {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.ios-email-input {
    flex: 1;
    padding: 14px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.2s;
}

.ios-email-input::placeholder {
    color: var(--text-subtle);
}

.ios-email-input:focus {
    border-color: var(--primary);
}

.btn-notify {
    padding: 14px 24px;
    background: var(--bg-muted);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-notify:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Install guide */
.install-guide {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px 40px;
}

.install-guide h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.install-steps {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.install-step {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.install-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.install-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.install-step span:last-child {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Process Section */
.process {
    padding: 120px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    opacity: 0.5;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Stories Section */
.stories {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.story-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.story-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), transparent);
}

.story-quote {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -20px;
}

.story-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.story-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.story-author div {
    display: flex;
    flex-direction: column;
}

.story-author strong {
    font-size: 0.95rem;
}

.story-author span {
    font-size: 0.85rem;
    color: var(--text-subtle);
}

/* Final CTA */
.final-cta {
    padding: 120px 24px;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-subtle), var(--bg-muted));
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.cta-buttons {
    margin-bottom: 24px;
}

.cta-meta {
    display: flex;
    gap: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.meta-icon {
    color: var(--accent);
}

.cta-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    padding: 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 60px 24px 24px;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.footer-brand .brand-logo {
    color: var(--primary);
}

.footer-content > p {
    color: var(--text-subtle);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-social {
        justify-content: center;
    }
    
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-meta {
        justify-content: center;
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
    }
    
    .cta-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .download-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large,
    .bento-wide {
        grid-column: span 1;
    }
    
    .process-step {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .cta-stats {
        flex-direction: column;
    }
    
    .trust-flags {
        flex-wrap: wrap;
    }
    
    .notif {
        display: none;
    }
    
    .install-steps {
        flex-direction: column;
    }
    
    .ios-notify {
        flex-direction: column;
    }
}
