/*
Theme Name: Subcis - Quran Circles
Theme URI: https://subcis.com
Author: Subcis
Author URI: https://subcis.com
Description: A premium landing page theme for the Subcis Quran Memorization Circles app. Memorize the Quran together with live circles.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: subcis
Tags: one-page, custom-background, custom-logo, featured-images, translation-ready
*/

/* ============================================
   CSS RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-darkest: #0a1a0f;
    --green-dark: #0d2818;
    --green-deep: #122d1a;
    --green-mid: #1a3d24;
    --green-accent: #2d5a3d;
    --gold: #d4a843;
    --gold-light: #e8c96a;
    --gold-dim: #b8922e;
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);
    --font-en: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-ar: 'Amiri', 'Traditional Arabic', serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 60px rgba(212, 168, 67, 0.15);
    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-en);
    background: var(--green-darkest);
    color: var(--white-90);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--white-70);
    max-width: 600px;
    line-height: 1.7;
}

.arabic-text {
    font-family: var(--font-ar);
    direction: rtl;
    unicode-bidi: bidi-override;
}

.verse-arabic {
    font-family: var(--font-ar);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--gold-light);
    direction: rtl;
    line-height: 1.8;
    margin-bottom: 12px;
}

.verse-translation {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--white-70);
    font-style: italic;
    margin-bottom: 8px;
}

.verse-reference {
    font-size: 0.85rem;
    color: var(--white-50);
    font-weight: 500;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--wide {
    max-width: 1400px;
}

.container--narrow {
    max-width: 800px;
}

section {
    position: relative;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.site-nav.scrolled {
    background: rgba(10, 26, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--white-10);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.nav-brand-name span {
    color: var(--gold);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white-70);
    position: relative;
    padding: 4px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 1px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--green-darkest);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.nav-cta svg {
    width: 16px;
    height: 16px;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(45, 90, 61, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: var(--gold);
    position: relative;
}

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--white-70);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

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

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-store--apple {
    background: var(--white);
    color: var(--green-darkest);
}

.btn-store--apple:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.btn-store--google {
    background: var(--white-10);
    color: var(--white);
    border: 1px solid var(--white-20);
}

.btn-store--google:hover {
    background: var(--white-20);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.08);
}

.btn-store svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-store-text small {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.7;
    line-height: 1;
}

.btn-store-text strong {
    font-size: 1rem;
    line-height: 1.2;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

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

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--white-50);
    margin-top: 2px;
}

/* Hero Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 280px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.phone-mockup img {
    width: 100%;
    border-radius: 36px;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(212, 168, 67, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Floating particles around phone */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 6s infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 85%; animation-delay: 1s; }
.particle:nth-child(3) { top: 80%; left: 20%; animation-delay: 2s; }
.particle:nth-child(4) { top: 30%; left: 90%; animation-delay: 3s; }
.particle:nth-child(5) { top: 70%; left: 50%; animation-delay: 4s; }

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(20px) scale(0); }
    20% { opacity: 0.6; transform: translateY(0) scale(1); }
    80% { opacity: 0.6; transform: translateY(-30px) scale(1); }
    100% { opacity: 0; transform: translateY(-50px) scale(0); }
}

/* ============================================
   VERSE BANNER
   ============================================ */
.verse-banner {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--green-darkest) 0%, var(--green-dark) 50%, var(--green-darkest) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.verse-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white-10), transparent);
}

.verse-banner .container {
    max-width: 700px;
}

.verse-ornament {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 24px;
    border-radius: 1px;
    opacity: 0.5;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 120px 0;
    position: relative;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-header .section-subtitle {
    margin: 0 auto;
}

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

.feature-card {
    padding: 40px 32px;
    background: linear-gradient(135deg, var(--white-05) 0%, transparent 100%);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--white-20);
    box-shadow: var(--shadow-card);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
    border-radius: 14px;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--green-darkest);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--white-70);
    line-height: 1.7;
}

/* ============================================
   SCREENSHOTS / HOW IT WORKS
   ============================================ */
.screenshots-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--green-darkest) 0%, var(--green-dark) 50%, var(--green-darkest) 100%);
}

.screenshots-header {
    text-align: center;
    margin-bottom: 80px;
}

.screenshots-header .section-subtitle {
    margin: 0 auto;
}

/* Step-by-step showcase */
.showcase-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.showcase-step:last-child {
    margin-bottom: 0;
}

.showcase-step.reverse {
    direction: rtl;
}

.showcase-step.reverse > * {
    direction: ltr;
}

.showcase-phone {
    display: flex;
    justify-content: center;
}

.showcase-phone .phone-mockup {
    width: 260px;
}

.showcase-content {
    max-width: 460px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
    color: var(--green-darkest);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 20px;
}

.showcase-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 16px;
}

.showcase-content p {
    font-size: 1.05rem;
    color: var(--white-70);
    line-height: 1.8;
    margin-bottom: 24px;
}

.showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.showcase-tag {
    padding: 6px 16px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--white-70);
    font-weight: 500;
}

/* ============================================
   SECOND VERSE / QUOTE SECTION
   ============================================ */
.verse-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

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

.verse-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    background: linear-gradient(135deg, var(--white-05) 0%, transparent 100%);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-xl);
    position: relative;
}

.verse-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

/* ============================================
   PRIVACY / VALUES SECTION
   ============================================ */
.values {
    padding: 120px 0;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.value-card {
    padding: 40px;
    background: linear-gradient(135deg, var(--white-05) 0%, transparent 100%);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--white-20);
    transform: translateY(-2px);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--white-70);
    line-height: 1.7;
}

/* ============================================
   CTA / DOWNLOAD SECTION
   ============================================ */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-card {
    position: relative;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 100%);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card > * {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    margin: 0 auto 32px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-card h2 .highlight {
    color: var(--gold);
}

.cta-description {
    font-size: 1.1rem;
    color: var(--white-70);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-verse {
    max-width: 500px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--white-10);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--white-10);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-brand .nav-brand {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--white-50);
    line-height: 1.7;
}

.footer-links-group h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white-70);
    margin-bottom: 16px;
}

.footer-links-group a {
    display: block;
    font-size: 0.9rem;
    color: var(--white-50);
    padding: 4px 0;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--white-05);
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-bottom p span {
    color: var(--gold);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 10px;
    color: var(--white-50);
    transition: var(--transition);
}

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

.footer-social a svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    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);
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Phone float animation */
@keyframes phone-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.phone-float {
    animation: phone-float 5s ease-in-out infinite;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: rgba(10, 26, 15, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 80px 32px 32px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--white-10);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu > a {
    display: block;
    padding: 16px 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white-70);
    border-bottom: 1px solid var(--white-05);
}

.mobile-menu > a:hover {
    color: var(--gold);
}

.mobile-menu .hero-buttons {
    flex-direction: column;
    margin-top: 32px;
}

.mobile-menu .btn-store {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    gap: 12px;
    border-bottom: none;
}

.mobile-menu .btn-store--apple {
    background: var(--white);
    color: var(--green-darkest);
}

.mobile-menu .btn-store--google {
    background: var(--white-10);
    color: var(--white);
    border: 1px solid var(--white-20);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .hero-visual {
        order: -1;
    }

    .phone-mockup {
        width: 240px;
    }

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

    .showcase-step {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .showcase-step.reverse {
        direction: ltr;
    }

    .showcase-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .showcase-tags {
        justify-content: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta.desktop-only {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero h1 {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .showcase-step {
        margin-bottom: 80px;
    }

    .showcase-phone .phone-mockup {
        width: 220px;
    }

    .cta-card {
        padding: 48px 24px;
    }

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

    .footer-top {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .btn-store {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-value {
        font-size: 1.25rem;
    }

    .phone-mockup {
        width: 200px;
    }

    .showcase-phone .phone-mockup {
        width: 200px;
    }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

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

    html {
        scroll-behavior: auto;
    }
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--green-darkest);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--green-darkest);
}

::-webkit-scrollbar-thumb {
    background: var(--green-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dim);
}
