:root {
  --primary: #4a1d96;
  --primary-light: #6b3fa0;
  --primary-dark: #2d1163;
  --secondary: #1e3a5f;
  --accent: #d4af37;
  --accent-light: #e6c556;
  --text: #1a1a2e;
  --text-light: #4a4a6a;
  --text-muted: #8888a0;
  --bg: #ffffff;
  --bg-alt: #f8f7fc;
  --bg-dark: #0f0f1a;
  --card-bg: rgba(255, 255, 255, 0.9);
  --glass: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 60px rgba(0, 0, 0, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

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

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
}

.nav.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

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

.nav-links a {
  font-weight: 500;
  color: var(--text-light);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(74, 29, 150, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(74, 29, 150, 0.4);
  color: white;
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border: 2px solid rgba(0, 0, 0, 0.1);
}

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

.btn-store {
  background: var(--bg-dark);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
}

.btn-store:hover {
  background: #2a2a3a;
  color: white;
  transform: translateY(-2px);
}

.btn-store img {
  height: 24px;
}

.btn-store span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-store .small {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.8;
}

.btn-store .big {
  font-size: 1rem;
  font-weight: 600;
}

/* Daily Verse Hero Section */
.daily-verse-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--bg-dark);
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  transition: background-image 0.8s ease-in-out;
}

.daily-verse-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(74, 29, 150, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(30, 58, 95, 0.3) 0%, transparent 60%),
    linear-gradient(175deg, rgba(15, 15, 26, 0.6) 0%, rgba(45, 17, 99, 0.5) 40%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.daily-verse-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.verse-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 64px 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(15, 15, 26, 0.7) 0%, rgba(45, 17, 99, 0.45) 50%, rgba(15, 15, 26, 0.65) 100%);
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.verse-card::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 28px;
  font-size: 10rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: rgba(212, 175, 55, 0.06);
  line-height: 1;
  pointer-events: none;
}

.verse-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.verse-date {
  display: inline-block;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.65rem;
  margin-bottom: 36px;
  position: relative;
  padding-bottom: 16px;
}

.verse-date::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.verse-body {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.verse-loading {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.spinner {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-left-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.verse-text {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.85;
  margin-bottom: 28px;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.verse-reference {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: normal;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin-bottom: 8px;
}

.verse-quote {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-style: italic;
}

.verse-quote:empty {
  display: none;
}

.verse-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.verse-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.verse-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
  padding: 8px 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.verse-btn svg {
  flex-shrink: 0;
}

.verse-btn:hover {
  color: white;
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
}

.verse-btn:hover svg {
  stroke: white;
}

.verse-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.verse-feedback {
  min-height: 18px;
  font-size: 0.8rem;
  color: var(--accent-light);
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.verse-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.verse-feedback.is-error {
  color: #f87171;
}

/* Hero Section */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f8f7fc 0%, #ece8f8 50%, #ddd8f0 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70%;
  height: 130%;
  background: radial-gradient(circle, rgba(74, 29, 150, 0.12) 0%, transparent 65%);
  pointer-events: none;
  animation: orb-pulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
  pointer-events: none;
  animation: orb-pulse 10s ease-in-out infinite reverse;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.08) translate(2%, -2%); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

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

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

.phone-mockup {
  position: relative;
  width: 280px;
  height: 580px;
  background: linear-gradient(160deg, #2a2040 0%, #0f0f1a 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255, 255, 255, 0.08), 0 40px 80px rgba(74, 29, 150, 0.25);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #0f0f1a;
  border-radius: 20px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Features Section */
.features {
  padding: 120px 0;
  background: var(--bg);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 40px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  transition: all 0.35s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 29, 150, 0.04) 0%, rgba(212, 175, 55, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: var(--radius-lg);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(74, 29, 150, 0.12);
  border-color: rgba(74, 29, 150, 0.12);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(74, 29, 150, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 12px 32px rgba(74, 29, 150, 0.35);
}

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

.feature-description {
  color: var(--text-light);
  line-height: 1.7;
}

/* Screenshots Section */
.screenshots {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.screenshots-track {
  position: relative;
}

.screenshots-track::before,
.screenshots-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.screenshots-track::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt) 0%, transparent 100%);
}

.screenshots-track::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt) 0%, transparent 100%);
}

.screenshots-wrapper {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 32px 80px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.screenshots-wrapper::-webkit-scrollbar {
  display: none;
}

.screenshot-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.screenshot-phone {
  width: 220px;
  height: 460px;
  background: linear-gradient(160deg, #2a2040 0%, #0f0f1a 100%);
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.screenshot-phone:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 24px 60px rgba(74, 29, 150, 0.2), 0 0 0 1px rgba(255,255,255,0.1);
}

.screenshot-phone img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}

/* Pricing Section */
.pricing {
  padding: 120px 0;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  padding: 48px 40px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.35s ease;
  border: 2px solid transparent;
  position: relative;
}

.pricing-card:not(.featured):hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74, 29, 150, 0.12);
}

.pricing-card.featured {
  background: linear-gradient(150deg, var(--primary-light) 0%, var(--primary) 40%, var(--primary-dark) 100%);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(74, 29, 150, 0.4);
}

.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-features li {
  color: white;
}

.pricing-card.featured .pricing-features li::before {
  color: var(--accent-light);
}

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

.pricing-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-trial {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card.featured .pricing-features li {
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* Comparison Table */
.comparison {
  padding: 80px 0;
  background: var(--bg-alt);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  text-align: center;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) td {
  background: rgba(74, 29, 150, 0.02);
}

.comparison-table tr:hover td {
  background: rgba(74, 29, 150, 0.05);
  transition: background 0.2s ease;
}

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

.cross {
  color: var(--text-muted);
}

/* CTA Section */
.cta {
  padding: 120px 0;
  background: linear-gradient(150deg, var(--primary-light) 0%, var(--primary) 40%, var(--primary-dark) 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn-store {
  background: white;
  color: var(--primary-dark);
}

.cta .btn-store:hover {
  background: var(--bg-alt);
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-dark);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

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

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

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

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

/* Legal Pages */
.legal-page {
  padding: 140px 0 80px;
  min-height: 100vh;
}

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

.legal-content h1 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.legal-content .last-updated {
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--primary);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

  .hero-image {
    order: -1;
  }

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

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

  .pricing-card.featured {
    transform: none;
  }
}

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 16px;
  }

  .screenshot-phone {
    width: 180px;
    height: 380px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .verse-actions {
    width: 100%;
  }

  .verse-btn {
    flex: 1;
    justify-content: center;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .phone-mockup {
    width: 200px;
    height: 420px;
  }

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

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

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

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

/* ============================================================
   Blog Styles
   ============================================================ */

/* Blog index hero */
.blog-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(107, 63, 160, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.blog-hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.blog-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.blog-hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto;
}

/* Blog post grid */
.blog-section {
  padding: 80px 0 100px;
  background: var(--bg-alt);
}

.blog-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--accent);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(74, 29, 150, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

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

.blog-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition), color var(--transition);
}

.blog-card-link:hover {
  color: var(--accent);
  gap: 10px;
}

.blog-card-link svg {
  flex-shrink: 0;
}

/* Blog post page */
.post-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.post-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 60%, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 85% 20%, rgba(107, 63, 160, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.post-hero-inner {
  max-width: 780px;
}

.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.post-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.post-hero-excerpt {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 680px;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.post-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.post-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.post-author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.post-author-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Article body */
.post-content {
  padding: 72px 0 100px;
  background: var(--bg);
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-light);
}

.post-body h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin: 56px 0 20px;
  line-height: 1.3;
}

.post-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 36px 0 14px;
}

.post-body p {
  margin-bottom: 24px;
}

.post-body ul,
.post-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.post-body li {
  margin-bottom: 10px;
}

.post-body blockquote {
  border-left: 4px solid var(--accent);
  background: var(--bg-alt);
  margin: 36px 0;
  padding: 24px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.75;
}

.post-body blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
}

.post-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body a:hover {
  color: var(--accent);
}

/* Post CTA box */
.post-cta-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin: 56px 0 0;
}

.post-cta-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.post-cta-box p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

.post-cta-box .btn {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  display: inline-block;
  transition: background var(--transition), transform var(--transition);
}

.post-cta-box .btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  color: var(--primary-dark);
}

/* Back link */
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 48px;
  transition: color var(--transition), gap var(--transition);
}

.post-back:hover {
  color: var(--primary);
  gap: 10px;
}

/* Post date tag in hero */
.post-date-tag {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 120px 0 60px;
  }

  .blog-section {
    padding: 60px 0 80px;
  }

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

  .post-hero {
    padding: 120px 0 60px;
  }

  .post-content {
    padding: 48px 0 72px;
  }

  .post-cta-box {
    padding: 36px 24px;
  }
}
