/* ========================================
   TIMELYNE LANDING PAGE
   Dark mode + Gold accent theme
   Mobile-first, Apple-style animations
   ======================================== */

/* CSS Custom Properties */
:root {
    /* Colors */
    --gold: #D4AF37;
    --gold-light: #E5C76B;
    --gold-dark: #B8962F;
    --gold-glow: rgba(212, 175, 55, 0.4);

    --dark: #0D0D0D;
    --dark-card: #1A1A1A;
    --dark-lighter: #252525;
    --dark-border: rgba(255, 255, 255, 0.1);

    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-300: #D1D1D1;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 100px 24px;
    --section-padding-mobile: 60px 16px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Utility Classes */
.text-gold {
    color: var(--gold);
}

.text-gray {
    color: var(--gray-400);
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    transition: var(--transition-medium);
}

.nav.scrolled {
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

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

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

.nav-cta {
    padding: 10px 20px;
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 24px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    animation: pulse-glow 8s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    filter: blur(60px);
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 20s linear infinite;
}

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

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--gold);
    margin-bottom: 24px;
}

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

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 48px;
}

@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

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

.btn-primary .btn-arrow {
    width: 20px;
    height: 20px;
    transition: var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--dark-border);
}

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

.btn-full {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-border);
}

/* Hero Visual - Phone Mockup */
.hero-visual {
    margin-top: 60px;
    perspective: 1000px;
    z-index: 1;
}

.phone-mockup {
    position: relative;
    transform: rotateX(5deg);
    transition: var(--transition-slow);
}

.phone-mockup:hover {
    transform: rotateX(0deg) scale(1.02);
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

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

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

.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 44px 44px 0 0;
    pointer-events: none;
}

/* App UI inside phone */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 16px 12px;
    font-size: 0.75rem;
}

.app-time {
    font-weight: 600;
}

.app-title {
    font-weight: 700;
    color: var(--gold);
}

.app-icons {
    font-size: 0.625rem;
}

.app-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.record-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
}

.waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 40px;
    margin-bottom: 16px;
}

.wave-bar {
    width: 4px;
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0s; height: 30%; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; height: 50%; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; height: 70%; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; height: 90%; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; height: 100%; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; height: 80%; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; height: 100%; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; height: 90%; }
.wave-bar:nth-child(9) { animation-delay: 0.8s; height: 70%; }
.wave-bar:nth-child(10) { animation-delay: 0.9s; height: 50%; }
.wave-bar:nth-child(11) { animation-delay: 1s; height: 40%; }
.wave-bar:nth-child(12) { animation-delay: 1.1s; height: 30%; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.record-time {
    font-size: 2rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    margin-bottom: 16px;
}

.record-btn {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 30px var(--gold-glow);
    margin-bottom: 12px;
}

.record-btn.pulse {
    animation: record-pulse 2s ease-in-out infinite;
}

@keyframes record-pulse {
    0%, 100% { box-shadow: 0 0 30px var(--gold-glow); }
    50% { box-shadow: 0 0 50px var(--gold-glow), 0 0 80px rgba(212, 175, 55, 0.2); }
}

.record-label {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.recent-captures {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.capture-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--dark-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-border);
}

.capture-icon {
    font-size: 1rem;
}

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

.capture-title {
    font-size: 0.75rem;
    font-weight: 600;
}

.capture-meta {
    font-size: 0.625rem;
    color: var(--gray-500);
}

.capture-status {
    font-size: 0.75rem;
}

.capture-status.processing {
    animation: sparkle 1s ease-in-out infinite;
}

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

.capture-status.done {
    color: #4ade80;
}

.app-tabs {
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid var(--dark-border);
}

.tab {
    font-size: 1.25rem;
    opacity: 0.4;
    transition: var(--transition-fast);
}

.tab.active {
    opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 0.75rem;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gray-500);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   SECTIONS - COMMON STYLES
   ======================================== */

.section {
    padding: var(--section-padding-mobile);
    position: relative;
}

@media (min-width: 768px) {
    .section {
        padding: var(--section-padding);
    }
}

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

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

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-card) 50%, var(--dark) 100%);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .steps {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
    }
}

.step {
    text-align: center;
    max-width: 300px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    z-index: 0;
}

.step-visual {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.step-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
}

.step-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: ring-pulse 3s ease-out infinite;
}

.step-ring.delay {
    animation-delay: 1.5s;
}

@keyframes ring-pulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.5); opacity: 0; }
}

.step-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: particle-orbit 4s linear infinite;
}

.step-particles span:nth-child(1) { animation-delay: 0s; }
.step-particles span:nth-child(2) { animation-delay: 1s; }
.step-particles span:nth-child(3) { animation-delay: 2s; }
.step-particles span:nth-child(4) { animation-delay: 3s; }

@keyframes particle-orbit {
    0% { transform: rotate(0deg) translateX(40px) rotate(0deg); opacity: 1; }
    100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); opacity: 1; }
}

.step-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    filter: blur(20px);
    animation: glow-pulse 3s ease-in-out infinite;
}

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

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gold);
}

.step-desc {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.step-connector {
    display: none;
}

@media (min-width: 900px) {
    .step-connector {
        display: block;
        width: 80px;
        margin-top: 50px;
    }

    .connector-line {
        width: 100%;
        height: 20px;
        animation: dash-flow 2s linear infinite;
    }

    @keyframes dash-flow {
        to { stroke-dashoffset: -20; }
    }
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    background: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.feature-card.large {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 32px;
}

@media (min-width: 768px) {
    .feature-card.large {
        flex-direction: row;
        align-items: center;
    }
}

.feature-card.wide {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .feature-card.wide {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.feature-visual {
    flex-shrink: 0;
}

.voice-visualization {
    width: 160px;
    height: 160px;
    position: relative;
    margin: 0 auto;
}

.voice-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: voice-ring-expand 3s ease-out infinite;
}

.voice-ring.r1 { animation-delay: 0s; }
.voice-ring.r2 { animation-delay: 1s; }
.voice-ring.r3 { animation-delay: 2s; }

@keyframes voice-ring-expand {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0; }
}

.voice-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    animation: voice-bounce 2s ease-in-out infinite;
}

@keyframes voice-bounce {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

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

.feature-content p {
    color: var(--gray-400);
    line-height: 1.6;
}

.feature-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--gold);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 1.75rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.article-styles {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.style-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
}

.article-preview {
    width: 200px;
    padding: 20px;
    background: var(--dark);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-line {
    height: 8px;
    background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.3));
    border-radius: 4px;
    animation: line-shimmer 2s ease-in-out infinite;
}

.article-line.short { width: 60%; }
.article-line.medium { width: 80%; }

@keyframes line-shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ========================================
   SHOWCASE SECTION
   ======================================== */

.showcase {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-card) 100%);
}

.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .showcase-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }
}

.showcase-before,
.showcase-after {
    width: 100%;
    max-width: 360px;
}

.showcase-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    text-align: center;
}

.memo-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.memo-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-medium);
}

.memo-card:hover {
    transform: translateX(4px);
    border-color: rgba(212, 175, 55, 0.3);
}

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

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

.memo-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.memo-preview {
    font-size: 0.75rem;
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-style: italic;
}

.memo-time {
    font-size: 0.625rem;
    color: var(--gray-500);
    margin-top: 6px;
}

.showcase-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

@media (min-width: 900px) {
    .showcase-arrow {
        flex-direction: row;
    }
}

.arrow-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

@media (min-width: 900px) {
    .arrow-line {
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
}

.arrow-icon {
    font-size: 1.5rem;
    animation: arrow-pulse 2s ease-in-out infinite;
}

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

.story-card-preview {
    padding: 24px;
    background: var(--dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1);
}

.story-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.story-category {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-date {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.story-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.story-excerpt {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 16px;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    background: var(--dark-card);
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .testimonials-track {
        flex-direction: row;
        gap: 24px;
    }
}

.testimonial-card {
    flex: 1;
    min-width: 0;
    padding: 32px;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-content::before {
    content: '"';
    color: var(--gold);
    font-size: 2rem;
    line-height: 0;
    vertical-align: bottom;
    margin-right: 4px;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--dark);
}

.author-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.author-title {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-preview {
    background: linear-gradient(180deg, var(--dark-card) 0%, var(--dark) 100%);
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

@media (min-width: 900px) {
    .pricing-cards {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
}

.pricing-card {
    width: 100%;
    max-width: 340px;
    padding: 32px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    transition: var(--transition-medium);
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, var(--dark-card) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
}

.period {
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--gray-300);
}

.check {
    color: var(--gold);
    font-weight: 700;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: var(--dark);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
}

.store-btn:hover {
    background: var(--dark-lighter);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.store-icon svg {
    width: 28px;
    height: 28px;
}

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

.store-label {
    display: block;
    font-size: 0.625rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.store-name {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
}

.cta-trust {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-trust {
        flex-direction: row;
        gap: 32px;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.trust-icon {
    font-size: 1rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    padding: 60px 24px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.footer-tagline {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

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

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    padding: 6px 0;
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark-border);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ========================================
   ANIMATIONS - SCROLL REVEAL
   ======================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid items */
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.5s; }

/* Hero animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fade-up 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 480px) {
    .hero-stats {
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
}
