:root {
  --ink: #17201b;
  --muted: #5f6a63;
  --paper: #fbfaf5;
  --line: #ded8c8;
  --gold: #b88a34;
  --green: #3f6250;
  --green-dark: #223a31;
  --blue: #2f536b;
  --rose: #9f5b56;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(34, 42, 37, 0.16);
  --visual-hero: url("https://commons.wikimedia.org/wiki/Special:FilePath/Saint%20Patrick%20Catholic%20Church%20%28Junction%20City%2C%20Ohio%29%20-%20stained%20glass%2C%20Glory%20of%20the%20Cross.jpg?width=1600");
  --visual-writing-stage: url("https://commons.wikimedia.org/wiki/Special:FilePath/Church%20on%20the%20hill%20in%20the%20early%20morning.jpg?width=1600");
  --visual-writing: url("https://commons.wikimedia.org/wiki/Special:FilePath/Catholic%20Rosary.jpg?width=1600");
  --visual-journal: url("https://commons.wikimedia.org/wiki/Special:FilePath/BucarestStavropoleosChurchBeforeEntrance.jpg?width=1600");
  --visual-verses: url("https://commons.wikimedia.org/wiki/Special:FilePath/The%20Dove%20and%20Cross.%20Stained-glass%20window%20at%20Church%20of%20Our%20Savior%20MCC%20%28Metropolitan%20Community%20Church%2C%20Church%29%2C%202011%20South%20Federal%20Hwy%2C%20Boynton%20Beach%2C%20Florida%2033435%2C%20USA.jpg?width=1600");
  --visual-letters: var(--visual-journal);
  --visual-prayer: var(--visual-verses);
  --visual-promises: var(--visual-hero);
  --visual-intercession: var(--visual-writing-stage);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(251, 250, 245, 0) 0%, var(--paper) 48rem),
    var(--paper);
}

.search-stage {
  position: relative;
  min-height: clamp(520px, 74vh, 760px);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 22px clamp(18px, 5vw, 72px) 56px;
  scroll-margin-top: 82px;
}

.stage-media,
.stage-overlay {
  position: absolute;
  inset: 0;
}

.stage-media {
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.home-media {
  background-image: var(--visual-hero);
}

.write-media {
  background-image: var(--visual-writing-stage);
}

.stage-overlay {
  background:
    linear-gradient(90deg, rgba(251, 250, 245, 0.96) 0%, rgba(251, 250, 245, 0.82) 38%, rgba(251, 250, 245, 0.38) 68%, rgba(251, 250, 245, 0.28) 100%),
    linear-gradient(180deg, rgba(251, 250, 245, 0.18) 0%, rgba(251, 250, 245, 0.88) 100%);
}

.topbar,
.search-panel {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(184, 138, 52, 0.45);
  background:
    linear-gradient(135deg, rgba(255, 249, 232, 0.95), rgba(63, 98, 80, 0.14)),
    var(--paper);
  color: var(--green-dark);
  box-shadow: 0 10px 24px rgba(37, 43, 39, 0.12);
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
}

.brand-mark circle {
  stroke: rgba(184, 138, 52, 0.62);
  stroke-width: 1.8;
}

.brand-mark path {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.translation {
  border: 1px solid rgba(63, 98, 80, 0.24);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 9px 13px;
  background: rgba(251, 250, 245, 0.64);
  backdrop-filter: blur(10px);
}

.search-panel {
  align-self: center;
  max-width: 760px;
  padding-top: 58px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin: 0 0 30px;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
}

.search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.search-box {
  width: min(100%, 720px);
  min-height: 90px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(34, 58, 49, 0.16);
  border-radius: 8px;
  padding: 14px 14px 14px 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-box svg {
  width: 25px;
  height: 25px;
  color: var(--green);
}

textarea {
  width: 100%;
  min-height: 58px;
  max-height: 150px;
  resize: vertical;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  line-height: 1.45;
}

textarea::placeholder {
  color: #7b867d;
}

.search-box button,
.quick-topics button {
  border: 0;
  border-radius: 7px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.search-box button {
  min-width: 112px;
  min-height: 54px;
  background: var(--green-dark);
  color: var(--white);
  padding: 0 20px;
}

.search-box button:hover,
.quick-topics button:hover {
  transform: translateY(-1px);
}

.search-box button:active,
.quick-topics button:active {
  transform: translateY(0);
}

.quick-topics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 720px);
  margin-top: 18px;
}

.quick-topics button {
  min-height: 39px;
  border: 1px solid rgba(34, 58, 49, 0.2);
  background: rgba(251, 250, 245, 0.78);
  color: var(--green-dark);
  padding: 0 12px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.quick-topics button:hover {
  background: var(--green-dark);
  color: var(--paper);
}

.results-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 28px auto 0;
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
}

.results-shell.is-hidden {
  display: none;
}

.results-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(240px, 0.65fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1;
}

#resultSummary {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.matched-topic {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-bottom: 20px;
  border: 1px solid rgba(184, 138, 52, 0.34);
  border-radius: 999px;
  background: #fff9e8;
  color: #5c4522;
  padding: 6px 14px;
}

.matched-topic span {
  color: #83602a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.matched-topic strong {
  font-size: 0.94rem;
}

.result-history {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
}

.result-history button {
  min-height: 38px;
  border: 1px solid rgba(34, 58, 49, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-dark);
  font-weight: 800;
  padding: 0 13px;
}

.result-history button:not(:disabled):hover {
  background: var(--green-dark);
  color: var(--paper);
}

.result-history button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.result-history span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.verse-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.verse-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(37, 43, 39, 0.08);
}

.verse-card:nth-child(2) .reference {
  color: var(--blue);
}

.verse-card:nth-child(3) .reference {
  color: var(--rose);
}

.verse-main {
  flex: 1;
  padding: 24px;
}

.reference {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-weight: 900;
}

.verse-text {
  margin: 0;
  color: #26302a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2vw, 1.55rem);
  line-height: 1.22;
}

.action {
  border-top: 1px solid var(--line);
  background: #f4f1e7;
  padding: 18px 20px;
}

.action span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.action p {
  margin: 0;
  color: #47534c;
  font-size: 0.95rem;
  line-height: 1.5;
}

.devotional-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 16px;
  margin-top: 18px;
}

.prayer-panel,
.gratitude-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(37, 43, 39, 0.07);
}

.prayer-panel {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 249, 232, 0.9), rgba(255, 255, 255, 0.9)),
    var(--white);
}

.prayer-panel #prayerText {
  margin: 0;
  color: #24302a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2.1vw, 1.65rem);
  line-height: 1.42;
}

.gratitude-panel {
  padding: 24px;
}

.gratitude-panel h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.02;
}

.gratitude-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: gratitude;
}

.gratitude-panel li {
  position: relative;
  min-height: 58px;
  border: 1px solid rgba(63, 98, 80, 0.16);
  border-radius: 8px;
  background: #f7f5ed;
  color: #46534c;
  line-height: 1.45;
  padding: 14px 14px 14px 54px;
  counter-increment: gratitude;
}

.gratitude-panel li::before {
  content: counter(gratitude);
  position: absolute;
  top: 13px;
  left: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-dark);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 900;
}

.biblical-examples {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.examples-heading {
  max-width: 760px;
  margin: 0 auto 16px;
  text-align: center;
}

.examples-heading .eyebrow,
.reflection-heading .eyebrow {
  margin-bottom: 10px;
}

.examples-heading h3,
.reflection-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.02;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.example-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(37, 43, 39, 0.07);
  padding: 22px;
}

.example-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 1.08rem;
}

.example-card .example-ref {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-card p {
  margin: 0;
  color: #46534c;
  line-height: 1.55;
}

.reflection-section {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.reflection-heading {
  max-width: 820px;
  margin: 0 auto 18px;
  text-align: center;
}

.reflection-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.reflection-panel,
.formation-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(37, 43, 39, 0.07);
  padding: 24px;
}

.formation-panel {
  background:
    linear-gradient(135deg, rgba(255, 249, 232, 0.82), rgba(255, 255, 255, 0.9)),
    var(--white);
}

.reflection-panel h4,
.formation-panel h4 {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: 1.06rem;
}

.reflection-panel ul,
.formation-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reflection-panel li,
.formation-panel li {
  position: relative;
  color: #46534c;
  line-height: 1.55;
  padding-left: 24px;
}

.reflection-panel li::before,
.formation-panel li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.formation-panel li::before {
  background: var(--green);
}

@media (max-width: 860px) {
  .search-stage {
    min-height: 620px;
    padding-inline: 18px;
  }

  .stage-overlay {
    background:
      linear-gradient(180deg, rgba(251, 250, 245, 0.94) 0%, rgba(251, 250, 245, 0.86) 55%, rgba(251, 250, 245, 0.96) 100%),
      linear-gradient(90deg, rgba(251, 250, 245, 0.85), rgba(251, 250, 245, 0.5));
  }

  .topbar {
    align-items: flex-start;
  }

  .translation {
    font-size: 0.76rem;
    padding: 8px 10px;
  }

  .search-box {
    grid-template-columns: 24px minmax(0, 1fr);
    padding: 14px;
  }

  .search-box button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .quick-topics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .results-heading,
  .verse-grid,
  .devotional-section,
  .example-grid,
  .reflection-grid {
    grid-template-columns: 1fr;
  }

  .verse-card {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .brand-name {
    font-size: 1rem;
  }

  .search-stage {
    min-height: 660px;
  }

  .quick-topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: 3.45rem;
  }

  .results-shell {
    width: min(100% - 24px, 1120px);
    margin-top: 22px;
  }

  .matched-topic {
    align-items: flex-start;
    border-radius: 8px;
    flex-direction: column;
    gap: 3px;
  }
}

body.dark {
  --ink: #e8ddc7;
  --muted: #b8ae99;
  --paper: #161d19;
  --line: #3b4a40;
  --gold: #d0aa5d;
  --green: #9fb9a6;
  --green-dark: #b8d4c0;
  --blue: #9dbbcc;
  --rose: #cc9a91;
  --white: #18211c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

body.dark,
body.dark html {
  background: var(--paper);
  color: var(--ink);
}

body.dark .app-shell {
  background: var(--paper);
}

body.dark .app-header {
  border-bottom-color: rgba(208, 170, 93, 0.24);
  background:
    linear-gradient(90deg, rgba(30, 38, 33, 0.95), rgba(22, 29, 25, 0.9) 48%, rgba(42, 39, 29, 0.86)),
    var(--paper);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

body.dark .stage-media {
  opacity: 0.34;
}

body.dark .stage-overlay {
  background:
    linear-gradient(90deg, rgba(22, 29, 25, 0.96) 0%, rgba(22, 29, 25, 0.88) 42%, rgba(22, 29, 25, 0.68) 76%, rgba(22, 29, 25, 0.58) 100%),
    linear-gradient(180deg, rgba(22, 29, 25, 0.12) 0%, rgba(22, 29, 25, 0.94) 100%);
}

.app-view {
  display: none;
}

.app-view.is-active {
  display: block;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  border-bottom: 1px solid rgba(184, 138, 52, 0.26);
  background:
    linear-gradient(90deg, rgba(255, 249, 232, 0.94), rgba(251, 250, 245, 0.88) 48%, rgba(230, 219, 190, 0.86)),
    color-mix(in srgb, var(--paper) 88%, transparent);
  box-shadow: 0 14px 34px rgba(37, 43, 39, 0.08);
  padding: 13px clamp(16px, 4vw, 44px);
  backdrop-filter: blur(22px);
}

.brand {
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.brand-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.02;
}

.brand-copy {
  display: block;
}

body.dark .brand-mark {
  background:
    linear-gradient(135deg, rgba(48, 42, 29, 0.94), rgba(32, 42, 36, 0.9)),
    #202a24;
}

.main-nav,
.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 24px);
}

.main-nav {
  justify-content: center;
  align-items: center;
}

.header-actions {
  align-items: center;
  justify-content: flex-end;
}

.music-tools {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.music-now {
  max-width: 170px;
  border-left: 1px solid rgba(184, 138, 52, 0.34);
  color: #7a6536;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  padding-left: 12px;
}

body.dark .music-now {
  border-left-color: rgba(208, 170, 93, 0.34);
  color: var(--gold);
}

.music-pause[hidden] {
  display: none;
}

.nav-tab,
.utility-button,
.primary-small,
.primary-cta,
.verse-button,
.entry-button {
  border-radius: 7px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.nav-tab,
.utility-button,
.entry-button,
.verse-button.secondary {
  min-height: 40px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--green-dark);
  padding: 0 14px;
}

.nav-tab,
.utility-button {
  position: relative;
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 800;
  padding: 9px 0 8px;
  text-decoration: none;
}

.utility-button {
  font-size: 0.9rem;
}

.nav-tab::after,
.utility-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(63, 98, 80, 0.78));
  transform: scaleX(0.34);
  transform-origin: left;
  opacity: 0.38;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

body.dark .nav-tab,
body.dark .utility-button,
body.dark .entry-button,
body.dark .verse-button.secondary {
  background: #202a24;
}

body.dark .nav-tab,
body.dark .utility-button {
  background: transparent;
  color: var(--ink);
}

body.dark .search-box,
body.dark .quick-topics button,
body.dark .result-history button,
body.dark .reminder-row input,
body.dark .profile-row input,
body.dark .entry-verse {
  background: #202a24;
  border-color: var(--line);
  color: var(--ink);
}

body.dark textarea::placeholder {
  color: #9f9685;
}

.nav-tab.is-active,
.primary-small,
.primary-cta,
.verse-button.primary {
  border: 1px solid var(--green-dark);
  background: var(--green-dark);
  color: var(--paper);
}

.nav-tab.is-active {
  border: 0;
  background: transparent;
  color: var(--green-dark);
}

.nav-tab.is-active::after,
.nav-tab:hover::after,
.utility-button:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

body.dark .nav-tab.is-active {
  color: var(--ink);
}

.nav-tab:focus-visible,
.utility-button:focus-visible {
  outline: 2px solid rgba(184, 138, 52, 0.58);
  outline-offset: 6px;
}

.nav-tab:hover,
.utility-button:hover,
.primary-small:hover,
.primary-cta:hover,
.verse-button:hover,
.entry-button:hover {
  transform: translateY(-1px);
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 66px);
  overflow: hidden;
}

.home-hero::after {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 26px;
  z-index: 1;
  width: min(360px, 34vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184, 138, 52, 0.86));
  content: "";
}

.home-privacy-link {
  width: min(1180px, calc(100% - 36px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 22px 0 34px;
}

.home-privacy-link span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.home-privacy-link a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.home-privacy-link a:hover {
  text-decoration: underline;
}

.home-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.68fr);
  align-items: center;
  gap: clamp(28px, 6vw, 64px);
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 66px);
  margin: 0 auto;
  padding: 54px 0 72px;
}

.home-copy {
  max-width: 760px;
}

.home-copy h1 {
  text-shadow: 0 2px 26px rgba(255, 255, 255, 0.5);
}

.home-subtitle,
.form-subtext,
.muted-copy {
  color: var(--muted);
  line-height: 1.7;
}

.home-subtitle {
  max-width: 710px;
  margin: -14px 0 0;
  font-size: 1.08rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.soft-card,
.widget-card,
.journal-entry,
.saved-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(37, 43, 39, 0.08);
}

.soft-card,
.widget-card {
  backdrop-filter: blur(14px);
}

body.dark .soft-card,
body.dark .widget-card,
body.dark .journal-entry,
body.dark .saved-card,
body.dark .verse-card,
body.dark .prayer-panel,
body.dark .gratitude-panel,
body.dark .example-card,
body.dark .reflection-panel {
  background: #202a24;
}

.soft-card {
  position: relative;
  container-type: inline-size;
  overflow: hidden;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-color: rgba(184, 138, 52, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 249, 232, 0.96), rgba(255, 255, 255, 0.78) 52%, rgba(63, 98, 80, 0.12)),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 54px rgba(37, 43, 39, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  padding: 34px 24px 28px;
}

.soft-card::before {
  position: absolute;
  top: 30px;
  right: 22px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(184, 138, 52, 0.44);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.68);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.soft-card:nth-child(1)::before {
  content: "01";
}

.soft-card:nth-child(2)::before {
  content: "02";
}

.soft-card:nth-child(3)::before {
  content: "03";
}

.soft-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 5px;
  background: linear-gradient(90deg, rgba(184, 138, 52, 0), rgba(184, 138, 52, 0.78), rgba(63, 98, 80, 0.72));
}

.soft-card strong,
.widget-card strong,
.saved-card strong {
  color: var(--green-dark);
}

.soft-card strong {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100% - 54px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-size: clamp(1.18rem, 8.6cqw, 2rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.soft-card p,
.widget-card p,
.journal-entry p,
.saved-card p {
  color: var(--muted);
  line-height: 1.6;
}

.soft-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #405047;
  font-size: 0.98rem;
}

body.dark .soft-card {
  border-color: rgba(208, 170, 93, 0.32);
  background:
    linear-gradient(145deg, rgba(45, 42, 31, 0.94), rgba(32, 42, 36, 0.88) 54%, rgba(159, 185, 166, 0.12)),
    #202a24;
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.dark .soft-card::before {
  background: rgba(22, 29, 25, 0.78);
}

body.dark .soft-card p {
  color: var(--muted);
}

.privacy-note {
  border: 1px solid rgba(184, 138, 52, 0.34);
  border-radius: 8px;
  background: #fff9e8;
  color: #5c4522;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.55;
  margin: 28px 0 0;
  padding: 16px 18px;
}

body.dark .privacy-note,
body.dark .matched-topic,
body.dark .formation-panel,
body.dark .prayer-panel {
  background: #2f2a1d;
  color: #ead8a7;
}

.privacy-note.compact {
  max-width: 720px;
}

.primary-cta {
  min-height: 54px;
  margin-top: 28px;
  padding: 0 26px;
}

.home-widgets {
  display: grid;
  gap: 16px;
  align-self: center;
}

.widget-card {
  padding: 22px;
}

.daily-text {
  margin: 14px 0;
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.2;
}

.widget-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.habit-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.habit-row strong {
  font-family: "Times New Roman", Times, serif;
  font-size: 4.4rem;
  line-height: 0.85;
}

.habit-row p {
  margin: 0;
  padding-bottom: 5px;
  font-weight: 800;
}

.reminder-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reminder-row input {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  padding: 0 10px;
}

.profile-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.profile-row input {
  flex: 1 1 150px;
  min-height: 40px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  padding: 0 12px;
}

.profile-card {
  border-color: rgba(184, 138, 52, 0.32);
}

.featured-profile {
  position: relative;
  overflow: hidden;
  border-color: rgba(184, 138, 52, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 249, 232, 0.92), rgba(255, 255, 255, 0.84)),
    var(--white);
  box-shadow: 0 24px 60px rgba(66, 45, 18, 0.14);
}

.featured-profile::before {
  position: absolute;
  top: -34px;
  right: -26px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 1px solid rgba(184, 138, 52, 0.28);
  content: "";
}

.featured-profile strong {
  display: block;
  font-size: 1.2rem;
}

.featured-profile .muted-copy {
  margin: 12px 0 0;
}

body.dark .featured-profile {
  background:
    linear-gradient(135deg, rgba(48, 42, 29, 0.94), rgba(32, 42, 36, 0.9)),
    #202a24;
}

.memory-widget .memory-text {
  margin-bottom: 16px;
}

.memory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.spiritual-history {
  display: grid;
  gap: 18px;
  margin-top: 26px;
  border-block: 1px solid rgba(184, 138, 52, 0.26);
  padding: 26px 0;
}

.history-copy {
  max-width: 760px;
}

.history-copy h3,
.section-minihead h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.04;
}

.history-copy p:last-child {
  color: var(--muted);
  line-height: 1.65;
  margin: 10px 0 0;
}

.history-grid,
.guided-prayer-layout {
  display: grid;
  gap: 16px;
}

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

.history-panel,
.guided-prayer-card,
.promise-card,
.letters-form,
.intercession-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(37, 43, 39, 0.08);
  backdrop-filter: blur(14px);
}

.history-panel {
  padding: 22px;
}

.history-panel h4 {
  margin: 0 0 16px;
  color: var(--green-dark);
}

.pattern-list {
  display: grid;
  gap: 14px;
}

.pattern-row {
  display: grid;
  gap: 8px;
}

.pattern-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.pattern-meta strong {
  color: var(--ink);
}

.pattern-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(63, 98, 80, 0.14);
}

.pattern-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.history-note {
  margin: 0;
  border-left: 3px solid var(--gold);
  color: var(--green-dark);
  font-weight: 900;
  line-height: 1.55;
  padding-left: 14px;
}

.compact-empty {
  padding: 14px;
}

.letters-form,
.intercession-form {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-top: 28px;
  padding: clamp(20px, 4vw, 28px);
}

.letters-form {
  background:
    linear-gradient(135deg, rgba(255, 249, 232, 0.94), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.86);
}

.letters-form label,
.intercession-form label {
  color: var(--green-dark);
  font-weight: 900;
}

.letters-form textarea,
.intercession-form textarea {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 250, 245, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  padding: 16px;
}

.intercession-form textarea {
  min-height: 100px;
}

.letter-body {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.2rem;
  line-height: 1.55;
}

.guided-prayer-layout {
  grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1fr);
  align-items: start;
  margin-top: 28px;
}

.situation-grid,
.promise-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.situation-grid {
  align-content: start;
}

.situation-button {
  min-height: 40px;
  border: 1px solid rgba(184, 138, 52, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  font-weight: 900;
  padding: 0 14px;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.situation-button:hover,
.situation-button.is-active {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--paper);
  transform: translateY(-1px);
}

.guided-prayer-card {
  padding: clamp(22px, 4vw, 32px);
}

.guided-prayer-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.guided-prayer-card p:not(.eyebrow):not(.copy-status) {
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.32rem, 2.2vw, 1.8rem);
  line-height: 1.38;
}

.saved-prayers-section {
  margin-top: 32px;
}

.section-minihead {
  margin-bottom: 16px;
}

.promise-filters {
  margin: 28px 0 18px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.promise-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.promise-card strong {
  color: var(--green-dark);
}

.promise-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.promise-card .promise-text {
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-size: 1.34rem;
  line-height: 1.25;
}

.promise-card .verse-button {
  margin-top: auto;
}

.intercession-entry h3 {
  max-width: 620px;
  margin: 4px 0 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.08;
}

.verse-button.is-marked {
  border-color: rgba(184, 138, 52, 0.54);
  background: #fff9e8;
  color: #6c4d1f;
}

body.dark .history-panel,
body.dark .guided-prayer-card,
body.dark .promise-card,
body.dark .letters-form,
body.dark .intercession-form {
  background: #202a24;
}

body.dark .letters-form {
  background:
    linear-gradient(135deg, rgba(48, 42, 29, 0.94), rgba(32, 42, 36, 0.88)),
    #202a24;
}

body.dark .letters-form textarea,
body.dark .intercession-form textarea {
  background: #18211c;
  color: var(--ink);
}

body.dark .pattern-track {
  background: rgba(232, 221, 199, 0.12);
}

body.dark .guided-prayer-card p:not(.eyebrow):not(.copy-status),
body.dark .promise-card .promise-text,
body.dark .letter-body {
  color: #eadfca;
}

body.dark .situation-button {
  background: rgba(32, 42, 36, 0.84);
}

body.dark .situation-button.is-active,
body.dark .situation-button:hover {
  background: var(--green-dark);
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

.steps-grid .reveal:nth-child(2),
.home-widgets .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.steps-grid .reveal:nth-child(3),
.home-widgets .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.home-widgets .reveal:nth-child(4) {
  transition-delay: 270ms;
}

.home-widgets .reveal:nth-child(5) {
  transition-delay: 360ms;
}

.primary-small {
  min-height: 40px;
  padding: 0 15px;
}

.section-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  width: min(1120px, calc(100% - 36px));
  min-height: clamp(250px, 32vw, 380px);
  margin: 28px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #efe7d5;
  box-shadow: 0 18px 44px rgba(37, 43, 39, 0.08);
}

.section-visual::before,
.section-visual::after {
  position: absolute;
  inset: 0;
  content: "";
}

.section-visual::before {
  background-image: var(--visual-writing);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.section-visual::after {
  background:
    linear-gradient(90deg, rgba(23, 32, 27, 0.76), rgba(23, 32, 27, 0.34) 56%, rgba(23, 32, 27, 0.1)),
    linear-gradient(180deg, transparent 0%, rgba(23, 32, 27, 0.28) 100%);
}

.section-visual-copy {
  position: relative;
  z-index: 1;
  max-width: 610px;
  padding: clamp(24px, 5vw, 42px);
}

.section-visual-copy h3 {
  margin: 0;
  color: #fff8e7;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.section-visual-copy p:last-child {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(255, 248, 231, 0.88);
  line-height: 1.6;
}

.compact-visual {
  width: 100%;
  min-height: clamp(230px, 30vw, 330px);
  margin-top: 24px;
}

.journal-visual::before {
  background-image: var(--visual-journal);
}

.verses-visual::before {
  background-image: var(--visual-verses);
}

body.dark .section-visual {
  background: #202a24;
}

body.dark .section-visual::after {
  background:
    linear-gradient(90deg, rgba(12, 16, 14, 0.82), rgba(12, 16, 14, 0.48) 62%, rgba(12, 16, 14, 0.2)),
    linear-gradient(180deg, transparent 0%, rgba(12, 16, 14, 0.42) 100%);
}

.small-label {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 900;
}

.search-panel h2 {
  margin-bottom: 8px;
}

.form-subtext {
  max-width: 720px;
  margin: 10px 0 0;
}

.result-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.copy-status {
  min-height: 0;
  margin: 0 0 14px;
  color: var(--green-dark);
  font-weight: 900;
}

.verse-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.verse-button {
  min-height: 38px;
  padding: 0 13px;
}

body.dark .verse-text,
body.dark .action p,
body.dark .prayer-panel #prayerText,
body.dark .gratitude-panel li,
body.dark .example-card p,
body.dark .reflection-panel li,
body.dark .formation-panel li {
  color: var(--muted);
}

body.dark .daily-text,
body.dark .verse-text,
body.dark .entry-prayer,
body.dark .saved-card .saved-text,
body.dark .prayer-panel #prayerText {
  color: #eadfca;
}

body.dark .action,
body.dark .gratitude-panel li {
  background: #18211c;
}

.section-shell {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 36px));
  min-height: calc(100vh - 68px);
  margin: 0 auto;
  padding: 54px 0 74px;
}

.panel-view {
  position: relative;
  min-height: calc(100vh - 68px);
  overflow: hidden;
  background: var(--paper);
}

body.dark .panel-view {
  background: var(--paper);
}

.panel-media,
.panel-overlay {
  position: absolute;
  inset: 0;
}

.panel-media {
  background-position: center;
  background-size: cover;
  opacity: 0.38;
  transform: scale(1.03);
}

.panel-media-journal {
  background-image: var(--visual-journal);
}

.panel-media-verses {
  background-image: var(--visual-verses);
}

.panel-media-letters {
  background-image: var(--visual-letters);
}

.panel-media-prayer {
  background-image: var(--visual-prayer);
}

.panel-media-promises {
  background-image: var(--visual-promises);
}

.panel-media-intercession {
  background-image: var(--visual-intercession);
}

.panel-overlay {
  background:
    linear-gradient(90deg, rgba(251, 250, 245, 0.98) 0%, rgba(251, 250, 245, 0.88) 48%, rgba(251, 250, 245, 0.62) 100%),
    linear-gradient(180deg, rgba(251, 250, 245, 0.7) 0%, var(--paper) 94%);
}

body.dark .panel-media {
  opacity: 0.28;
}

body.dark .panel-overlay {
  background:
    linear-gradient(90deg, rgba(22, 29, 25, 0.98) 0%, rgba(22, 29, 25, 0.9) 48%, rgba(22, 29, 25, 0.74) 100%),
    linear-gradient(180deg, rgba(22, 29, 25, 0.72) 0%, var(--paper) 94%);
}

.entry-list,
.saved-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.saved-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-entry,
.saved-card {
  padding: 22px;
}

.entry-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.entry-date {
  display: block;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
}

.entry-query {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 250, 245, 0.8);
  padding: 14px;
  white-space: pre-wrap;
}

body.dark .entry-query {
  background: #18211c;
}

.entry-verses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.entry-verse {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.entry-prayer,
.saved-card .saved-text {
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-size: 1.25rem;
  line-height: 1.35;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  padding: 22px;
  text-align: center;
}

.toast {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 30;
  max-width: min(420px, calc(100% - 32px));
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--paper);
  font-weight: 900;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.toast:empty {
  display: none;
}

.privacy-document {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(251, 250, 245, 0.98), rgba(251, 250, 245, 0.86)),
    var(--visual-hero) center / cover;
  padding: clamp(18px, 5vw, 54px);
}

.privacy-back {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  font-weight: 900;
  padding: 0 14px;
  text-decoration: none;
}

.privacy-hero,
.privacy-content {
  width: min(860px, 100%);
}

.privacy-hero {
  margin-top: clamp(42px, 8vw, 86px);
}

.privacy-hero .brand-mark {
  margin-bottom: 22px;
}

.privacy-hero h1 {
  margin-bottom: 18px;
}

.privacy-hero p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.privacy-content {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.privacy-content article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(37, 43, 39, 0.07);
  padding: clamp(20px, 4vw, 28px);
  backdrop-filter: blur(14px);
}

.privacy-content h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.privacy-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

body.dark .privacy-document {
  background:
    linear-gradient(90deg, rgba(22, 29, 25, 0.98), rgba(22, 29, 25, 0.86)),
    var(--visual-hero) center / cover;
}

body.dark .privacy-back,
body.dark .privacy-content article {
  background: rgba(32, 42, 36, 0.84);
}

@media (max-width: 980px) {
  .app-header {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .main-nav,
  .header-actions {
    justify-content: flex-start;
  }

  .music-tools {
    margin-top: 0;
  }

  .home-grid,
  .steps-grid,
  .saved-grid,
  .entry-verses,
  .history-grid,
  .guided-prayer-layout,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .home-grid {
    align-items: start;
    padding-top: 42px;
  }

  .home-hero::after {
    width: 54vw;
  }
}

@media (max-width: 620px) {
  .app-header {
    padding-inline: 14px;
  }

  .main-nav {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .nav-tab,
  .utility-button {
    flex: 0 0 auto;
  }

  .music-tools {
    width: 100%;
  }

  .music-now {
    max-width: none;
  }

  .situation-grid,
  .promise-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .situation-button {
    width: 100%;
  }

  .home-grid,
  .results-shell,
  .section-shell,
  .section-visual {
    width: min(100% - 24px, 1120px);
  }

  .section-visual {
    min-height: 320px;
  }

  .section-visual::after {
    background:
      linear-gradient(180deg, rgba(23, 32, 27, 0.18), rgba(23, 32, 27, 0.82)),
      linear-gradient(90deg, rgba(23, 32, 27, 0.52), rgba(23, 32, 27, 0.18));
  }

  .home-subtitle {
    margin-top: -18px;
  }

  .result-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-history {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav-tab,
  .utility-button,
  .primary-small,
  .primary-cta,
  .verse-button,
  .entry-button {
    transition: none;
  }
}
