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

:root {
  --bg: #F9F6F0;
  --bg-alt: #F0EDE5;
  --fg: #1A1A1A;
  --fg-muted: #5C5C4E;
  --green: #3D6B4F;
  --green-light: #4A7A5B;
  --gold: #B8873A;
  --gold-light: #D4A44A;
  --border: rgba(61, 107, 79, 0.18);
  --card-bg: #FFFFFF;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
  z-index: 100;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.star-icon {
  color: var(--gold);
  font-size: 1rem;
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--fg);
  margin-bottom: 1.75rem;
  line-height: 1.05;
}

.hero-headline em {
  font-style: italic;
  color: var(--green);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease;
  font-family: 'DM Sans', sans-serif;
}

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

.hero-price {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* Section Labels */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.section-headline {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: var(--fg);
  margin-bottom: 3rem;
}

/* How It Works */
.how-it-works {
  padding: 6rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-it-works .section-label { text-align: center; }

.journal-moment {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.journal-left, .response-right { flex: 1; }

.journal-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
}

.journal-card::before {
  content: 'Your journal entry';
  position: absolute;
  top: -0.6rem;
  left: 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--card-bg);
  padding: 0 0.5rem;
}

.journal-handwriting {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
}

.journal-arrow { display: flex; align-items: center; }

.response-card {
  background: var(--card-bg);
  border: 1px solid var(--green);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
}

.response-card::before {
  content: 'Nemora responds';
  position: absolute;
  top: -0.6rem;
  left: 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--card-bg);
  padding: 0 0.5rem;
}

.response-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: var(--fg);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.response-verse { border-top: 1px solid var(--border); padding-top: 1rem; }

.verse-ref {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  color: var(--green);
  font-style: italic;
}

.verse-source {
  display: block;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

.how-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* Features */
.features {
  padding: 7rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(61, 107, 79, 0.08);
}

.feature-icon {
  margin-bottom: 1rem;
  opacity: 0.85;
}

.feature-item h3 {
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Verses */
.verses-section {
  padding: 6rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.verse-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.verse-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.verse-card--wide { grid-column: span 2; }

.verse-theme {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.verse-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: var(--fg);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 0.75rem;
}

.verse-cite {
  font-size: 0.72rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* Reviews */
.reviews-section {
  padding: 6rem 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
}

.rating-score {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--fg);
}

.rating-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1rem; }
.rating-count { font-size: 0.8rem; color: var(--fg-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15rem;
  margin-bottom: 0.75rem;
}

.review-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: var(--fg);
  line-height: 1.55;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.reviews-footer {
  text-align: center;
}

.see-all-reviews {
  font-size: 0.85rem;
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--green);
  padding-bottom: 1px;
  transition: opacity 0.15s;
}

.see-all-reviews:hover { opacity: 0.7; }

/* Closing */
.closing {
  padding: 7rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-inner { max-width: 600px; margin: 0 auto; }

.closing-cross {
  margin-bottom: 2rem;
  opacity: 0.6;
}

.closing-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.closing-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: var(--green);
  font-style: italic;
  margin-bottom: 2rem;
}

.closing .btn-primary { margin: 0 auto 0.75rem; display: inline-flex; }

.closing-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* Footer */
footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-style: italic;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
}

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

.footer-built {
  font-size: 0.72rem;
  color: var(--fg-muted);
}

.footer-built a {
  color: var(--green);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .journal-moment {
    flex-direction: column;
  }
  .journal-arrow { transform: rotate(90deg); }
  .verse-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .verse-card--wide { grid-column: span 2; }
  footer .container { flex-direction: column; align-items: flex-start; }
}

/* ── Desktop App Shell ─────────────────────────────────────────────────── */

.app-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 52px;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 200;
}

.topbar-brand { display: flex; align-items: baseline; gap: 0.75rem; }
.brand-name { font-family: 'Cormorant Garamond',Georgia,serif; font-size: 1.3rem; font-weight: 600; color: var(--fg); }
.brand-tagline { font-size: 0.75rem; color: var(--fg-muted); font-style: italic; }

.topbar-user { font-size: 0.85rem; color: var(--fg-muted); }

/* Topbar color bar */
.app-topbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
}

.app-shell {
  display: flex;
  min-height: 100vh;
  padding-top: 52px;
}

.app-nav {
  position: fixed;
  top: 52px; left: 0; bottom: 0;
  width: 200px;
  background: var(--card-bg);
  border-right: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--fg-muted);
  text-align: left;
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
  width: 100%;
}

.nav-item:hover { background: var(--bg-alt); color: var(--fg); }
.nav-item.active { background: var(--bg-alt); color: var(--green); font-weight: 500; border-right: 3px solid var(--green); }

.app-content {
  margin-left: 200px;
  flex: 1;
  padding: 2.5rem 3rem;
  max-width: 800px;
}

/* Tab panels */
.tab-panel { animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.panel-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.panel-header h2 {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: 2rem;
  font-weight: 500;
}

.panel-subtitle { font-size: 0.9rem; color: var(--fg-muted); margin-top: 0.25rem; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green); color: #fff; padding: 0.75rem 1.5rem;
  border: none; border-radius: 100px; font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s; text-decoration: none;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--green-light); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--bg-alt); color: var(--fg); padding: 0.6rem 1.25rem;
  border: 1px solid var(--border); border-radius: 100px; font-size: 0.85rem;
  cursor: pointer; transition: background 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-secondary:hover { background: var(--border); }

.btn-new-entry {
  background: var(--green); color: #fff; border: none; border-radius: 100px;
  padding: 0.6rem 1.25rem; font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-new-entry:hover { background: var(--green-light); }

/* Journal */
.entry-form { margin-bottom: 2rem; }

.entry-card {
  background: var(--card-bg);
  border: 1px solid var(--green);
  border-radius: 14px;
  padding: 1.75rem;
}

.entry-card textarea {
  width: 100%; border: none; outline: none;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 300;
  line-height: 1.7; resize: vertical; min-height: 120px;
  color: var(--fg); background: transparent;
}
.entry-card textarea::placeholder { color: var(--fg-muted); }

.entry-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 0.75rem;
}

.mood-select {
  border: 1px solid var(--border); border-radius: 8px; padding: 0.4rem 0.75rem;
  font-size: 0.85rem; font-family: 'DM Sans', sans-serif; background: var(--card-bg);
  color: var(--fg-muted); cursor: pointer;
}

.entry-actions { display: flex; gap: 0.75rem; }

.btn-cancel {
  background: none; border: 1px solid var(--border); border-radius: 100px;
  padding: 0.5rem 1.1rem; font-size: 0.85rem; cursor: pointer; color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
}
.btn-cancel:hover { background: var(--bg-alt); }

.btn-save {
  background: var(--green); color: #fff; border: none; border-radius: 100px;
  padding: 0.5rem 1.25rem; font-size: 0.85rem; font-weight: 500;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-save:hover { background: var(--green-light); }

/* Entry list */
.entries-list { display: flex; flex-direction: column; gap: 1rem; }

.entry-item {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.25rem 1.5rem; cursor: pointer; transition: border-color 0.2s, transform 0.15s;
}
.entry-item:hover { border-color: var(--green); transform: translateY(-1px); }
.entry-item.has-scripture { border-left: 3px solid var(--green); }

.entry-date { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 0.5rem; }
.entry-preview { font-size: 0.95rem; color: var(--fg); line-height: 1.55; }

.mood-tag {
  display: inline-block; margin-top: 0.6rem; font-size: 0.72rem;
  background: var(--bg-alt); color: var(--fg-muted);
  border-radius: 100px; padding: 0.2rem 0.65rem;
}
.scripture-badge {
  display: inline-block; margin-top: 0.6rem; margin-left: 0.5rem;
  font-size: 0.72rem; color: var(--green); font-weight: 500;
}

/* Scripture response */
.scripture-response { display: flex; flex-direction: column; gap: 1.5rem; }

.response-entry {
  font-family: 'Cormorant Garamond',Georgia,serif; font-size: 1.15rem;
  font-style: italic; color: var(--fg); line-height: 1.6;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem;
}

.response-card {
  background: var(--card-bg); border: 1px solid var(--green);
  border-radius: 14px; padding: 1.75rem;
}

.response-text {
  font-size: 1rem; color: var(--fg); line-height: 1.65;
  margin-bottom: 1.25rem;
}

.response-verse { border-top: 1px solid var(--border); padding-top: 1.25rem; }

.verse-text {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: 1.15rem; font-style: italic; color: var(--fg);
  line-height: 1.55; margin-bottom: 0.5rem; display: block;
}

.verse-ref {
  font-size: 0.82rem; color: var(--green); font-style: normal;
  display: block;
}

/* Empty state */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--fg-muted); }
.empty-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.empty-state p { font-size: 0.95rem; line-height: 1.6; max-width: 400px; margin: 0 auto 1.5rem; }

.loading { text-align: center; color: var(--fg-muted); padding: 2rem; font-size: 0.9rem; }

/* Listen */
.listen-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem; margin-top: 0.5rem;
}

.reflection-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.75rem; cursor: pointer;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.reflection-card:hover {
  border-color: var(--green); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(61,107,79,0.1);
}

.reflection-icon { color: var(--gold); font-size: 1.5rem; margin-bottom: 0.75rem; }
.reflection-card h3 { font-family: 'Cormorant Garamond',Georgia,serif; font-size: 1.25rem; margin-bottom: 0.4rem; }
.reflection-tagline { font-size: 0.85rem; color: var(--fg-muted); font-style: italic; margin-bottom: 0.75rem; }
.reflection-meta { font-size: 0.72rem; color: var(--fg-muted); }

/* Audio player */
.listen-player {
  position: fixed; bottom: 0; left: 200px; right: 0;
  height: 200px; display: flex; flex-direction: column;
  border-top: 2px solid var(--green);
  background: var(--card-bg);
}

.player-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  opacity: 0.8;
}

.player-content {
  position: relative; padding: 1.5rem 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}

.player-content h3 { font-family: 'Cormorant Garamond',Georgia,serif; font-size: 1.4rem; }
.player-tagline { font-size: 0.85rem; color: var(--fg-muted); font-style: italic; }

.verse-box {
  background: var(--card-bg); border: 1px solid var(--green);
  border-radius: 10px; padding: 1rem 1.25rem; max-width: 600px;
}

.verse-body {
  font-family: 'Cormorant Garamond',Georgia,serif;
  font-size: 1rem; color: var(--fg); line-height: 1.55;
  margin-bottom: 0.4rem;
}

.player-controls { display: flex; align-items: center; gap: 1rem; }

.btn-play {
  background: var(--green); color: #fff; border: none; border-radius: 100px;
  padding: 0.65rem 1.5rem; font-size: 0.9rem; font-weight: 500; cursor: pointer;
  transition: background 0.2s; font-family: 'DM Sans', sans-serif;
}
.btn-play:hover { background: var(--green-light); }

.btn-close-player {
  background: none; border: 1px solid var(--border); border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; color: var(--fg-muted);
}
.btn-close-player:hover { background: var(--bg-alt); }

/* Bible reader */
.bible-reader { }
.bible-nav { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }

.bible-select {
  border: 1px solid var(--border); border-radius: 8px; padding: 0.5rem 0.9rem;
  font-size: 0.9rem; font-family: 'DM Sans', sans-serif; background: var(--card-bg);
  color: var(--fg); cursor: pointer; min-width: 150px;
}
.bible-select:hover { border-color: var(--green); }

.bible-text {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 2rem;
}

.bible-welcome { text-align: center; color: var(--fg-muted); font-style: italic; padding: 3rem; }

.bible-chapter-header {
  font-family: 'Cormorant Garamond',Georgia,serif; font-size: 1.6rem;
  font-weight: 500; margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.bible-translation { font-size: 0.75rem; color: var(--fg-muted); margin-left: 0.75rem; font-style: italic; }

.bible-verses { font-size: 1rem; line-height: 1.85; }

.verse-num {
  color: var(--gold); font-size: 0.65rem; vertical-align: super;
  margin-right: 0.2rem; font-weight: 500;
}

.bible-chapter-nav { display: flex; justify-content: space-between; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }

/* Auth overlay */
.auth-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(249,246,240,0.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}

.auth-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 18px; padding: 2.5rem; max-width: 400px; width: 90%;
  box-shadow: 0 20px 60px rgba(61,107,79,0.1); text-align: center;
}

.auth-card h2 { font-family: 'Cormorant Garamond',Georgia,serif; font-size: 1.8rem; margin-bottom: 0.5rem; }
.auth-card p { color: var(--fg-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

.auth-card input {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border);
  border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  background: var(--bg); margin-bottom: 0.75rem; box-sizing: border-box;
}
.auth-card input:focus { outline: none; border-color: var(--green); }

.auth-card .btn-primary { width: 100%; justify-content: center; margin-top: 0.25rem; }

@media (max-width: 480px) {
  .verse-mosaic { grid-template-columns: 1fr; }
  .verse-card--wide { grid-column: span 1; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.5rem; }
  .app-nav { width: 60px; }
  .nav-item span { display: none; }
  .app-content { margin-left: 60px; padding: 1.5rem; }
  .listen-player { left: 60px; }
}