/* ============================================================
   PrayerMade Landing Page
   Contemplative, premium, warm — dark navy/teal/purple
   ============================================================ */

/* ─── Reset & Variables ────────────────────────────────────── */

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

:root {
    /* Core palette */
    --navy-deep: #0a1120;
    --navy: #0f172a;
    --navy-mid: #162035;
    --slate: #1e293b;
    --slate-light: #334155;

    /* Accent: Teal */
    --teal-dark: #0d9488;
    --teal: #14b8a6;
    --teal-light: #5eead4;
    --teal-glow: rgba(20, 184, 166, 0.15);
    --teal-glow-strong: rgba(20, 184, 166, 0.3);

    /* Accent: Purple */
    --purple: #8b5cf6;
    --purple-light: #a78bfa;
    --purple-glow: rgba(139, 92, 246, 0.15);

    /* Gradients */
    --gradient-hero: linear-gradient(165deg, #0f172a 0%, #132a42 40%, #0d3b4f 70%, #0f172a 100%);
    --gradient-teal: linear-gradient(135deg, var(--teal), var(--teal-light));
    --gradient-purple: linear-gradient(135deg, var(--purple), var(--purple-light));
    --gradient-text: linear-gradient(135deg, var(--teal-light), var(--teal), var(--purple-light));
    --gradient-card: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    --gradient-card-hover: linear-gradient(160deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);

    /* Text */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);

    /* Phone frame */
    --phone-bezel: #1a1a2e;
    --phone-border: #2a2a40;

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-pad: 120px;
    --container-max: 1200px;

    /* Easing */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

img {
    display: block;
    max-width: 100%;
}

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

/* ─── Ambient Orbs ─────────────────────────────────────────── */

.orbs-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    will-change: transform;
    transition: transform 0.3s ease-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.25) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation: orbFloat1 25s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    bottom: 20%;
    left: -8%;
    animation: orbFloat2 30s ease-in-out infinite;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation: orbFloat3 20s ease-in-out infinite;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    top: 80%;
    left: 30%;
    animation: orbFloat4 28s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-40px, 30px); }
    66% { transform: translate(20px, -20px); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -40px); }
    66% { transform: translate(-20px, 20px); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -30px); }
}

@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(25px, -35px); }
}

/* ─── Navigation ───────────────────────────────────────────── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 17, 32, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

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

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

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

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

.nav-cta {
    padding: 8px 20px !important;
    border-radius: 8px;
    background: var(--gradient-teal) !important;
    color: var(--navy-deep) !important;
    font-weight: 600 !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.mobile-menu-btn.active .menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .menu-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 17, 32, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 24px;
    z-index: 99;
    flex-direction: column;
    gap: 4px;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s var(--ease-out);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* ─── Section Utilities ────────────────────────────────────── */

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

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

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

/* ─── Buttons ──────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-teal);
    color: var(--navy-deep);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 14px 4px;
}

.btn-ghost:hover {
    color: var(--teal-light);
}

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

.btn-outline:hover {
    border-color: var(--glass-border-hover);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* ─── Gradient Text ────────────────────────────────────────── */

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

/* ─── Phone Frame ──────────────────────────────────────────── */

.phone-frame {
    position: relative;
    background: var(--phone-bezel);
    border: 2px solid var(--phone-border);
    border-radius: 36px;
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 25px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background: var(--phone-bezel);
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.phone-screen {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--navy);
    aspect-ratio: 9 / 19.5;
}

.phone-screen .mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* ─── HERO ─────────────────────────────────────────────────── */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--navy-deep));
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--teal-glow);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--teal-light);
    margin-bottom: 28px;
}

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

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

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-description em {
    color: var(--teal-light);
    font-style: italic;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-mockup {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-phone {
    width: 280px;
    animation: heroFloat 6s ease-in-out infinite;
}

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

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

/* ─── FEATURES ─────────────────────────────────────────────── */

.features {
    padding: var(--section-pad) 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

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

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s var(--ease-out);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--teal-glow);
    color: var(--teal);
    margin-bottom: 20px;
}

.feature-icon.accent-purple {
    background: var(--purple-glow);
    color: var(--purple-light);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

.features-list-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.features-list-strip span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ─── HOW IT WORKS ─────────────────────────────────────────── */

.how-it-works {
    padding: var(--section-pad) 0;
    position: relative;
}

.steps-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.35s var(--ease-out);
}

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

.step-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-teal);
    color: var(--navy-deep);
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

.step-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-teal);
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
}

.step-card-accent.purple {
    background: var(--gradient-purple);
}

.step-card:hover .step-card-accent {
    opacity: 1;
}

.step-card-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    opacity: 0.4;
}

/* ─── PRAYER EXAMPLE ───────────────────────────────────────── */

.prayer-example {
    padding: var(--section-pad) 0;
    position: relative;
}

.prayer-example::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.prayer-card-showcase {
    max-width: 680px;
    margin: 0 auto;
}

.prayer-card-rendered {
    background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.prayer-card-header {
    padding: 24px 32px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.prayer-style-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--teal-glow);
    border: 1px solid rgba(20, 184, 166, 0.2);
    color: var(--teal-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.prayer-card-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.prayer-card-body {
    padding: 28px 32px;
}

.prayer-card-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.prayer-card-body p:last-of-type:not(.prayer-amen) {
    margin-bottom: 16px;
}

.prayer-amen {
    font-weight: 700;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 0 !important;
}

.prayer-card-footer {
    padding: 0 32px 28px;
}

.prayer-card-actions {
    display: flex;
    gap: 10px;
}

.action-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ─── REFLECTIONS SHOWCASE ─────────────────────────────────── */

.reflections-showcase {
    padding: var(--section-pad) 0;
    position: relative;
}

.reflections-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

/* Two-column: main reflection + sidebar */
.reflection-preview {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    max-width: 1080px;
    margin: 0 auto;
}

/* ── Main reflection column ── */

.reflection-main {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 36px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.reflection-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.reflection-scripture-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    margin-bottom: 28px;
    color: var(--purple-light);
}

.scripture-ref {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--purple-light);
}

.scripture-version {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.reflection-body-text {
    margin-bottom: 28px;
}

.reflection-body-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.reflection-body-text p:last-child {
    margin-bottom: 0;
}

/* Encouragement callout */
.reflection-encouragement {
    display: flex;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(20, 184, 166, 0.06);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: 14px;
    margin-bottom: 28px;
    color: var(--teal-light);
}

.reflection-encouragement svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--teal);
}

.reflection-encouragement p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--teal-light);
}

/* Inline shareable quote */
.reflection-quote-inline {
    position: relative;
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.8), rgba(22, 32, 53, 0.9));
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
}

.rq-icon {
    color: var(--teal);
    margin-bottom: 12px;
}

.reflection-quote-inline p {
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

/* ── Sidebar column ── */

.reflection-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-section {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 24px;
}

.sidebar-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

/* Reflection prompts */
.reflection-prompts-list {
    list-style: none;
    counter-reset: prompt;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reflection-prompts-list li {
    counter-increment: prompt;
    display: flex;
    gap: 12px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.reflection-prompts-list li::before {
    content: counter(prompt);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.15);
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Quotes to meditate on */
.meditate-quotes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meditate-quote {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    padding-left: 14px;
    border-left: 2px solid rgba(139, 92, 246, 0.3);
}

/* Verses to look up */
.verses-to-lookup {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.verse-card {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--teal);
    border-radius: 4px 10px 10px 4px;
}

.verse-ref {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 4px;
}

.verse-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.verses-note {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-muted);
    font-style: italic;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ─── QUOTE SHOWCASE ───────────────────────────────────────── */

.quote-showcase {
    padding: 80px 0;
    position: relative;
}

.quote-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.quote-showcase-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-context h3 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.quote-context > p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 440px;
}

/* Origin trail */
.quote-origin {
    position: relative;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-origin-line {
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(to bottom, var(--teal), var(--purple), var(--teal-light));
    border-radius: 2px;
}

.quote-origin-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quote-origin-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.quote-origin-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Quote card image */
.quote-card-display {
    flex-shrink: 0;
}

.quote-card-img {
    width: 280px;
    border-radius: 20px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: transform 0.4s var(--ease-out);
}

.quote-card-display:hover .quote-card-img {
    transform: translateY(-6px) rotate(-1deg);
}

/* ─── QUIET STRIP (phones + tagline) ──────────────────────── */

.quiet-strip {
    padding: 80px 0;
    position: relative;
}

.quiet-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.quiet-strip-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.quiet-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.quiet-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 400px;
}

.quiet-phones {
    display: flex;
    gap: 20px;
}

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

.showcase-phone-sm {
    width: 150px;
    transition: transform 0.4s var(--ease-out);
}

.showcase-item:hover .showcase-phone-sm {
    transform: translateY(-6px);
}

/* ─── PRAYER LIST SHOWCASE ─────────────────────────────────── */

.prayer-list-showcase {
    padding: var(--section-pad) 0;
    position: relative;
}

.prayer-list-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.prayer-list-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.prayer-list-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.plf-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal);
}

.prayer-list-feature h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

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

.prayer-list-phones {
    position: relative;
    display: flex;
    justify-content: center;
    height: 500px;
}

.prayer-list-phone {
    width: 220px;
    position: absolute;
}

.prayer-list-phone:first-child {
    z-index: 2;
    left: 10%;
    top: 0;
}

.prayer-list-phone-back {
    z-index: 1;
    right: 10%;
    top: 30px;
    opacity: 0.85;
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .prayer-list-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .prayer-list-phones {
        height: 420px;
        order: -1;
    }

    .prayer-list-phone {
        width: 180px;
    }

    .prayer-list-phone:first-child {
        left: 15%;
    }

    .prayer-list-phone-back {
        right: 15%;
    }
}

@media (max-width: 480px) {
    .prayer-list-phones {
        height: 360px;
    }

    .prayer-list-phone {
        width: 155px;
    }

    .prayer-list-phone:first-child {
        left: 5%;
    }

    .prayer-list-phone-back {
        right: 5%;
    }
}

/* ─── PRICING ──────────────────────────────────────────────── */

.pricing {
    padding: var(--section-pad) 0;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.35s var(--ease-out);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.premium {
    border-color: rgba(20, 184, 166, 0.3);
    background: linear-gradient(160deg, rgba(20, 184, 166, 0.08) 0%, rgba(139, 92, 246, 0.04) 100%);
}

.pricing-card.premium:hover {
    border-color: rgba(20, 184, 166, 0.5);
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    background: var(--gradient-teal);
    color: var(--navy-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 100px;
    text-transform: uppercase;
}

.price-savings {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.3);
    color: var(--teal-light);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
}

.pricing-card.yearly {
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(160deg, rgba(139, 92, 246, 0.08) 0%, rgba(20, 184, 166, 0.04) 100%);
}

.pricing-card.yearly:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

.pricing-header {
    margin-bottom: 8px;
}

.pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text-primary);
}

.price-period {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.pricing-features li svg {
    color: var(--teal);
    flex-shrink: 0;
}

.pricing-features li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ─── DOWNLOAD CTA ─────────────────────────────────────────── */

.download {
    padding: var(--section-pad) 0 100px;
    position: relative;
}

.download-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.download-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.download-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 32px;
    background: var(--text-primary);
    color: var(--navy-deep);
    border-radius: 14px;
    transition: all 0.25s var(--ease-out);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(241, 245, 249, 0.15);
}

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-label {
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0.7;
    line-height: 1;
}

.store-name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* ─── FOOTER ───────────────────────────────────────────────── */

.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 0 40px;
}

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

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

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

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

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

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

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

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* ─── Scroll Animations ────────────────────────────────────── */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ─── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 1024px) {
    :root {
        --section-pad: 80px;
    }

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

    .hero-container {
        gap: 40px;
    }

    .hero-phone {
        width: 240px;
    }

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

@media (max-width: 768px) {
    :root {
        --section-pad: 64px;
    }

    /* Nav */
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-mockup {
        order: -1;
    }

    .hero-phone {
        width: 220px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Steps */
    .steps-cards {
        flex-direction: column;
        gap: 16px;
    }

    .step-card-arrow {
        transform: rotate(90deg);
    }

    /* Prayer example */
    .prayer-card-header {
        padding: 20px 24px 0;
    }

    .prayer-card-body {
        padding: 24px;
    }

    .prayer-card-footer {
        padding: 0 24px 24px;
    }

    .prayer-card-actions {
        flex-wrap: wrap;
    }

    /* Reflections */
    .reflection-preview {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .reflection-main {
        padding: 28px 24px;
    }

    /* Quote showcase */
    .quote-showcase-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .quote-context > p {
        max-width: none;
    }

    .quote-origin {
        text-align: left;
        display: inline-flex;
    }

    .quote-card-img {
        width: 240px;
    }

    /* Quiet strip */
    .quiet-strip-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .quiet-text p {
        max-width: none;
    }

    .quiet-phones {
        justify-content: center;
    }

    .showcase-phone-sm {
        width: 130px;
    }

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

    .pricing-card {
        padding: 32px 24px;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .hero-phone {
        width: 200px;
    }

    .quiet-phones {
        flex-wrap: wrap;
        gap: 16px;
    }

    .showcase-phone-sm {
        width: 110px;
    }

    .store-btn {
        padding: 14px 24px;
    }
}
