:root {
  color-scheme: light;
  --page: #f5f7f4;
  --surface: #ffffff;
  --surface-soft: #edf3ee;
  --ink: #141b19;
  --muted: #56635f;
  --subtle: #73817b;
  --evergreen: #28695c;
  --evergreen-deep: #153f38;
  --mint: #dcebe5;
  --amber: #c68b2e;
  --amber-soft: #fff2d7;
  --blue: #315f7d;
  --blue-soft: #e4eef5;
  --red: #b3261e;
  --line: rgba(20, 27, 25, 0.13);
  --shadow: 0 18px 50px rgba(20, 27, 25, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--page);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
}

a {
  color: inherit;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(20, 27, 25, 0.08);
  background: rgba(245, 247, 244, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 1.02rem;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--evergreen);
  color: #ffffff;
  font-weight: 900;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(40, 105, 92, 0.09);
  color: var(--evergreen-deep);
}

.preview-badge,
.eyebrow {
  color: var(--evergreen-deep);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.preview-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(40, 105, 92, 0.22);
  border-radius: 999px;
  background: var(--mint);
}

.badge-short {
  display: none;
}

.eyebrow {
  margin-bottom: 12px;
}

/* Hero */

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 520px;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(245, 247, 244, 0.98) 0%, rgba(245, 247, 244, 0.88) 37%, rgba(245, 247, 244, 0.38) 66%, rgba(245, 247, 244, 0.1) 100%),
    linear-gradient(0deg, rgba(245, 247, 244, 0.92) 0%, rgba(245, 247, 244, 0) 34%);
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 64px;
}

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1.03;
}

.lede {
  max-width: 610px;
  margin-bottom: 26px;
  color: #34423e;
  font-size: 1.12rem;
  line-height: 1.58;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  max-width: 100%;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
}

.primary-cta {
  gap: 10px;
  padding: 13px 22px;
  background: var(--evergreen);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(40, 105, 92, 0.24);
}

.secondary-cta {
  padding: 12px 18px;
  border: 1px solid rgba(20, 27, 25, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-1px);
}

.primary-cta:hover {
  background: var(--evergreen-deep);
  box-shadow: 0 15px 34px rgba(40, 105, 92, 0.31);
}

.secondary-cta:hover {
  border-color: rgba(40, 105, 92, 0.34);
  background: #ffffff;
}

.primary-cta:active,
.secondary-cta:active {
  transform: translateY(0);
}

.primary-cta:focus-visible,
.secondary-cta:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(198, 139, 46, 0.78);
  outline-offset: 3px;
}

.cta-icon {
  flex-shrink: 0;
}

.download-note {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

/* Shared sections */

.proof-strip,
.review-section,
.commands-section,
.scheduling-section,
.download-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 520px;
}

.section-heading h2,
.download-section h2 {
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1.14;
}

.section-heading p:not(.eyebrow),
.download-section p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Proof strip */

.proof-strip {
  display: grid;
  gap: 12px;
  padding: 24px 0 34px;
}

.proof-strip div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}

.proof-kicker {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.proof-strip strong {
  font-size: 1rem;
  line-height: 1.38;
}

/* Review section */

.review-section,
.commands-section,
.scheduling-section {
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.review-layout {
  display: grid;
  gap: 30px;
  align-items: center;
  margin-top: 28px;
}

.step-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  position: relative;
  min-height: 66px;
  padding: 15px 18px 15px 62px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  line-height: 1.58;
  counter-increment: steps;
}

.step-list li::before {
  position: absolute;
  top: 16px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--amber-soft);
  color: #7c5212;
  font-size: 0.84rem;
  font-weight: 900;
  content: counter(steps);
}

.step-list span {
  display: block;
}

/* Phone mockup */

.phone-shell {
  position: relative;
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(20, 27, 25, 0.2);
  border-radius: 30px;
  background: #101514;
  box-shadow: var(--shadow);
}

.hero-phone {
  display: none;
}

.phone-topbar {
  display: flex;
  justify-content: space-between;
  padding: 12px 13px 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 750;
}

.review-card,
.transcript-panel {
  border-radius: 8px;
  background: var(--surface);
}

.review-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(40, 105, 92, 0.2);
  background:
    linear-gradient(140deg, #ffffff 0 62%, rgba(49, 95, 125, 0.12) 100%),
    var(--surface);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
}

.review-card-header strong {
  min-width: 0;
  font-size: 0.95rem;
}

.review-card-header span {
  color: var(--evergreen);
  font-size: 0.92rem;
  font-weight: 850;
}

.verse-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 7px;
  margin: 0;
  padding: 4px 18px 30px;
  font-size: 1.08rem;
  line-height: 1.55;
}

.spoken {
  font-weight: 850;
}

.hidden-word {
  color: rgba(86, 99, 95, 0.66);
}

.blank-word {
  display: inline-block;
  width: 66px;
  height: 0.86em;
  transform: translateY(0.18em);
  border-radius: 999px;
  background: rgba(86, 99, 95, 0.17);
}

.blank-word.short {
  width: 40px;
}

.blank-word.wide {
  width: 92px;
}

.progress-track {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: rgba(20, 27, 25, 0.08);
}

.progress-track span {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--evergreen), var(--amber));
}

.transcript-panel {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  padding: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.mic-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(179, 38, 30, 0.12);
  animation: pulse-mic 2s ease-in-out infinite;
}

@keyframes pulse-mic {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(179, 38, 30, 0.1);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(179, 38, 30, 0.18);
  }
}

/* Commands */

.command-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.command-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.command-list div {
  display: grid;
  grid-template-columns: minmax(92px, 0.35fr) 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.command-list dt {
  color: var(--evergreen-deep);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 900;
}

.command-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.completion-panel {
  align-self: start;
  padding: 22px;
  border: 1px solid rgba(49, 95, 125, 0.24);
  border-radius: 8px;
  background: var(--blue-soft);
}

.completion-panel p {
  margin-bottom: 0;
  color: #33424a;
  line-height: 1.65;
}

.completion-panel .panel-label {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

code {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--evergreen-deep);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  font-weight: 850;
}

/* Scheduling */

.schedule-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.schedule-list li {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.schedule-list strong {
  color: var(--evergreen-deep);
  font-size: 1rem;
}

.schedule-list span {
  color: var(--muted);
  line-height: 1.55;
}

/* Download section */

.download-section {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 34px 22px;
  margin-bottom: 28px;
  border: 1px solid rgba(40, 105, 92, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(220, 235, 229, 0.95), rgba(255, 242, 215, 0.68)),
    var(--mint);
}

.download-section .eyebrow,
.download-section h2 {
  color: var(--evergreen-deep);
}

.download-section .primary-cta {
  justify-self: start;
}

/* Footer */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 16px 36px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-mark {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  font-size: 0.82rem;
}

@media (min-width: 760px) {
  .site-header {
    padding-inline: 28px;
  }

  .site-nav {
    display: flex;
  }

  .hero {
    min-height: 610px;
  }

  .hero-inner,
  .proof-strip,
  .review-section,
  .commands-section,
  .scheduling-section,
  .download-section {
    width: min(1120px, calc(100% - 56px));
  }

  h1 {
    font-size: 4.2rem;
  }

  .lede {
    font-size: 1.2rem;
  }

  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .review-section,
  .commands-section,
  .scheduling-section {
    padding: 70px 0;
  }

  .review-section {
    display: grid;
    grid-template-columns: minmax(240px, 0.76fr) minmax(0, 1.24fr);
    gap: 56px;
    align-items: start;
  }

  .review-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 28px;
    margin-top: 0;
  }

  .commands-section,
  .scheduling-section {
    display: grid;
    grid-template-columns: minmax(240px, 0.76fr) minmax(0, 1.24fr);
    gap: 56px;
    align-items: start;
  }

  .command-grid,
  .schedule-list {
    margin-top: 0;
  }

  .command-grid {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.74fr);
    gap: 34px;
  }

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

  .download-section {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 38px 40px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    gap: 10px;
    padding: 12px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .preview-badge {
    padding-inline: 8px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 0;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(245, 247, 244, 0.98) 0%, rgba(245, 247, 244, 0.9) 45%, rgba(245, 247, 244, 0.62) 100%),
      linear-gradient(0deg, rgba(245, 247, 244, 0.96) 0%, rgba(245, 247, 244, 0) 34%);
  }

  .hero-inner {
    padding: 36px 0 38px;
  }

  h1 {
    font-size: 2.34rem;
  }

  .lede {
    margin-bottom: 22px;
    font-size: 1.02rem;
  }

  .primary-cta {
    width: 100%;
  }

  .secondary-cta,
  .download-note {
    display: none;
  }

  .hero-phone {
    display: block;
    width: min(100%, 330px);
    margin-top: 18px;
    margin-inline: auto;
  }

  .review-phone {
    display: none;
  }

  .section-heading h2,
  .download-section h2 {
    font-size: 1.68rem;
  }

  .review-section,
  .commands-section,
  .scheduling-section {
    padding: 46px 0;
  }

  .command-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .phone-shell {
    padding: 12px;
    border-radius: 26px;
  }

  .review-card {
    min-height: 170px;
  }

  .review-card-header {
    padding: 14px 16px 8px;
  }

  .verse-line {
    padding: 4px 16px 20px;
  }

  .transcript-panel {
    padding: 10px;
  }

  .download-section {
    padding: 28px 18px;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-inline: 10px;
  }

  .brand {
    gap: 7px;
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .badge-full {
    display: none;
  }

  .badge-short {
    display: inline;
  }

  h1 {
    font-size: 2.2rem;
  }
}
