:root {
  color-scheme: light;
  --blue: #4a83ff;
  --blue-strong: #2f6fe9;
  --blue-soft: #eef4ff;
  --blue-pale: #f6f9ff;
  --ink: #17191d;
  --ink-soft: #5e6570;
  --ink-faint: #89909a;
  --surface: #ffffff;
  --surface-alt: #f7f8fb;
  --line: #e7e9ee;
  --line-strong: #d9dde5;
  --green: #53a56b;
  --green-soft: #ebf7ee;
  --amber: #c28a2b;
  --amber-soft: #fff8e9;
  --danger: #c64c4c;
  --shadow-sm: 0 1px 2px rgba(20, 28, 45, 0.04);
  --shadow: 0 18px 50px rgba(31, 43, 70, 0.08);
  --shadow-phone: 0 28px 80px rgba(31, 43, 70, 0.14);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --max-width: 1180px;
  --reading-width: 820px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--blue-strong);
  text-underline-offset: 3px;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(74, 131, 255, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  color: #fff;
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

.reading-container {
  width: min(100% - 40px, var(--reading-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(231, 233, 238, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-logo {
  width: 166px;
  height: auto;
}

.footer-logo {
  width: 176px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 12px;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 590;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--surface-alt);
}

.nav-links a[aria-current="page"] {
  color: var(--blue-strong);
  background: var(--blue-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 1.5px;
  margin-inline: auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

main {
  overflow: clip;
}

section {
  padding: 88px 0;
}

.section-compact {
  padding: 64px 0;
}

.section-tint {
  background: var(--surface-alt);
}

.section-blue {
  background: var(--blue-pale);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  width: 18px;
  height: 1.5px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
h4,
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.65rem, 6vw, 5.35rem);
  line-height: 0.99;
  letter-spacing: -0.062em;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h3 {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.3;
  letter-spacing: -0.018em;
}

.section-title {
  max-width: 760px;
}

.section-intro {
  max-width: 690px;
  margin: 18px 0 36px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero {
  position: relative;
  padding: 82px 0 96px;
  background:
    radial-gradient(circle at 85% 5%, rgba(74, 131, 255, 0.12), transparent 35%),
    linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.hero::after {
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(74, 131, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.hero-copy h1 strong {
  color: var(--blue);
  font-weight: inherit;
}

.hero-copy h1 {
  font-size: clamp(2.65rem, 5vw, 4.65rem);
}

.hero-copy .lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero-copy .supporting {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--ink-faint);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions {
  align-items: stretch;
}

.hero-actions .play-store-embed {
  min-height: 48px;
  flex: 0 0 auto;
  margin-top: 0;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(74, 131, 255, 0.22);
}

.btn-primary:hover {
  color: #fff;
  background: var(--blue-strong);
  box-shadow: 0 14px 30px rgba(74, 131, 255, 0.26);
}

.btn-ghost {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.btn-ghost:hover {
  color: var(--ink);
  background: var(--surface-alt);
}

.button-icon {
  width: 18px;
  height: 18px;
}

.hero-visual {
  position: relative;
  min-height: 535px;
  display: grid;
  place-items: center;
}

.verse-visual {
  position: relative;
  width: min(100%, 510px);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #f8f3eb url("../images/montanhas-amanhecer.png") center / cover;
  box-shadow: var(--shadow-phone);
}

.verse-visual::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.42) 68%, rgba(255, 255, 255, 0.08) 100%);
  content: "";
}

.verse-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 23, 40, 0.08), transparent 35%);
  content: "";
}

.verse-visual-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: center;
  padding: 52px 46px;
}

.verse-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verse-label-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f2b947;
  box-shadow: 0 0 0 5px rgba(242, 185, 71, 0.16);
}

.verse-quote {
  max-width: 350px;
  margin: 27px 0 16px;
  font-family: var(--font-serif);
  font-size: clamp(1.72rem, 3vw, 2.42rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.verse-reference {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 760;
}

.visual-logo {
  position: absolute;
  top: 25px;
  left: 28px;
  z-index: 2;
  width: 44px;
  height: auto;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 35px rgba(31, 43, 70, 0.12);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 700;
  animation: float 5s ease-in-out infinite;
}

.floating-chip svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.floating-chip--top {
  top: 62px;
  right: -26px;
}

.floating-chip--bottom {
  bottom: 52px;
  left: -36px;
  animation-delay: -2.4s;
}

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

.play-store-embed {
  display: inline-flex;
  min-width: 245px;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  padding: 12px 16px;
  color: #fff;
  background: #15171b;
  border: 1px solid #15171b;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  cursor: not-allowed;
  opacity: 0.96;
  text-align: left;
}

.play-store-embed[disabled] {
  color: #fff;
}

.play-store-icon {
  position: relative;
  width: 28px;
  height: 31px;
  flex: none;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: linear-gradient(145deg, #42d3a5 0 48%, #37a8f4 49% 100%);
}

.play-store-icon::before {
  position: absolute;
  inset: 7px 1px 7px 10px;
  background: #ffd34e;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
}

.play-store-copy {
  display: grid;
  line-height: 1.15;
}

.play-store-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.play-store-copy strong {
  margin-top: 4px;
  font-size: 1.03rem;
  letter-spacing: -0.01em;
}

.play-store-note {
  margin: 9px 0 0;
  color: var(--ink-faint);
  font-size: 0.79rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.focus-item {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.focus-item:hover {
  transform: translateY(-4px);
  border-color: #d8e4ff;
  box-shadow: var(--shadow);
}

.icon-box {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--blue);
  border-radius: 13px;
  background: var(--blue-soft);
}

.icon-box svg {
  width: 21px;
  height: 21px;
}

.focus-item p,
.feature-card p {
  margin: 9px 0 0;
  color: var(--ink-soft);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(420px, 1.26fr);
  align-items: center;
  gap: clamp(38px, 8vw, 100px);
  margin-top: 42px;
}

.demo-controls {
  display: grid;
  gap: 8px;
}

.demo-control {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: center;
  width: 100%;
  padding: 14px;
  color: var(--ink-soft);
  border: 1px solid transparent;
  border-radius: 17px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.demo-control:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.demo-control[aria-selected="true"] {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.demo-control-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink-faint);
  border-radius: 14px;
  background: var(--surface-alt);
}

.demo-control[aria-selected="true"] .demo-control-icon {
  color: var(--blue);
  background: var(--blue-soft);
}

.demo-control-icon svg {
  width: 22px;
  height: 22px;
}

.demo-control-copy {
  display: grid;
  gap: 2px;
}

.demo-control-copy strong {
  font-size: 0.98rem;
}

.demo-control-copy span {
  color: var(--ink-faint);
  font-size: 0.83rem;
}

.demo-stage {
  position: relative;
  min-height: 710px;
  display: grid;
  place-items: center;
  padding: 42px;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 72% 20%, rgba(74, 131, 255, 0.2), transparent 32%),
    linear-gradient(145deg, #eef4ff, #f8faff 60%, #fff);
}

.demo-stage::before,
.demo-stage::after {
  position: absolute;
  border: 1px solid rgba(74, 131, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.demo-caption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  z-index: 3;
  margin: 0;
  color: #7e8795;
  font-size: 0.68rem;
  text-align: center;
}

.demo-stage::before {
  width: 340px;
  height: 340px;
  right: -150px;
  top: -120px;
}

.demo-stage::after {
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: -90px;
}

.demo-screen {
  position: relative;
  z-index: 2;
  width: min(100%, 350px);
  min-height: 628px;
  overflow: hidden;
  color: #17191d;
  border: 1px solid rgba(217, 221, 229, 0.9);
  border-radius: 31px;
  background: #fff;
  box-shadow: var(--shadow-phone);
  transform-origin: 50% 70%;
}

.demo-screen[hidden] {
  display: none;
}

.demo-screen.is-entering {
  animation: screen-in 440ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

@keyframes screen-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.demo-status {
  display: flex;
  height: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: #25282e;
  font-size: 0.64rem;
  font-weight: 760;
}

.demo-status-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}

.demo-status-icons i {
  display: block;
  width: 12px;
  height: 6px;
  border: 1.2px solid currentColor;
  border-radius: 2px;
}

.demo-app-body {
  padding: 12px 18px 76px;
}

.demo-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.demo-app-logo {
  width: 31px;
  height: auto;
}

.demo-round-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  padding: 0;
  color: #656b74;
  border: 0;
  border-radius: 50%;
  background: #f5f6f8;
}

.demo-round-icon svg {
  width: 15px;
  height: 15px;
}

.demo-greeting {
  margin: 19px 0 3px;
  font-size: 1.56rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.demo-subtitle {
  margin: 0 0 16px;
  color: #7b818a;
  font-size: 0.71rem;
}

.demo-verse-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid #eceef2;
  border-radius: 20px;
  background: #f8f4ed url("../images/montanhas-amanhecer.png") center / cover;
}

.demo-verse-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.95) 48%, rgba(255, 255, 255, 0.18) 100%);
  content: "";
}

.demo-verse-card > * {
  position: relative;
}

.demo-verse-meta {
  display: flex;
  justify-content: space-between;
  color: #646a74;
  font-size: 0.57rem;
  font-weight: 730;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.demo-share {
  color: var(--blue);
}

.demo-verse-text {
  max-width: 230px;
  margin: 16px 0 10px;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.25;
}

.demo-reference {
  font-size: 0.62rem;
  font-weight: 760;
}

.demo-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 2px 9px;
  font-size: 0.75rem;
  font-weight: 760;
}

.demo-section-label a {
  color: var(--blue);
  font-size: 0.58rem;
  text-decoration: none;
}

.demo-note-list {
  overflow: hidden;
  border: 1px solid #eceef2;
  border-radius: 14px;
}

.demo-note-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #fff;
}

.demo-note-row + .demo-note-row {
  border-top: 1px solid #eff0f3;
}

.demo-note-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--blue);
  border-radius: 9px;
  background: var(--blue-soft);
  font-size: 0.75rem;
}

.demo-note-icon svg {
  width: 16px;
  height: 16px;
}

.demo-note-copy {
  display: grid;
  gap: 1px;
}

.demo-note-copy strong {
  font-size: 0.62rem;
}

.demo-note-copy span,
.demo-note-date {
  color: #858b94;
  font-size: 0.51rem;
}

.demo-continue {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border: 1px solid #eceef2;
  border-radius: 14px;
}

.demo-progress-copy {
  display: grid;
}

.demo-progress-copy strong {
  font-size: 0.63rem;
}

.demo-progress-copy span {
  color: #858b94;
  font-size: 0.52rem;
}

.demo-percent {
  color: var(--blue);
  font-size: 0.57rem;
  font-weight: 740;
}

.demo-bottom-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 62px;
  align-items: center;
  border-top: 1px solid #eceef2;
  background: rgba(255, 255, 255, 0.96);
}

.demo-nav-item {
  display: grid;
  place-items: center;
  gap: 2px;
  color: #8b919a;
  font-size: 0.47rem;
}

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

.demo-nav-item.is-active {
  color: var(--blue);
}

.reader-demo .demo-app-body {
  padding-inline: 25px;
}

.reader-progress {
  height: 2px;
  background: #edf0f5;
}

.reader-progress span {
  display: block;
  width: 68%;
  height: 100%;
  background: var(--blue);
  animation: reader-progress 2.8s ease-in-out infinite alternate;
}

@keyframes reader-progress {
  from {
    width: 56%;
  }
  to {
    width: 72%;
  }
}

.reader-heading {
  margin: 24px 0 2px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 760;
}

.reader-chapter {
  margin: 0 0 25px;
  color: #8b919a;
  text-align: center;
  font-size: 0.52rem;
}

.reader-copy {
  color: #292c32;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  line-height: 1.76;
}

.reader-copy p {
  margin: 0 0 15px;
}

.verse-number {
  margin-right: 4px;
  color: #8d939b;
  font-family: var(--font-sans);
  font-size: 0.5rem;
  vertical-align: super;
}

.reader-highlight {
  padding: 1px 0;
  background: linear-gradient(transparent 18%, #ffeaa8 18% 88%, transparent 88%);
}

.reader-comment {
  border-bottom: 1.5px solid var(--blue);
}

.reader-tool-pill {
  position: absolute;
  left: 50%;
  bottom: 78px;
  display: flex;
  gap: 5px;
  padding: 6px;
  border: 1px solid #e5e8ee;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 35px rgba(31, 43, 70, 0.13);
  transform: translateX(-50%);
}

.reader-tool-pill span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #68707a;
  border-radius: 9px;
  background: #f6f7f9;
  font-size: 0.57rem;
}

.notes-demo {
  background: #fafbfe;
}

.notes-title-row,
.profile-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
}

.notes-title-row h3,
.profile-title-row h3 {
  font-size: 1.32rem;
}

.demo-add {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: #fff;
  border-radius: 10px;
  background: var(--blue);
  font-size: 1rem;
}

.notes-filter {
  display: flex;
  gap: 6px;
  margin: 16px 0;
}

.notes-filter span {
  padding: 6px 9px;
  color: #7e848e;
  border: 1px solid #e7eaf0;
  border-radius: 999px;
  background: #fff;
  font-size: 0.51rem;
}

.notes-filter span:first-child {
  color: var(--blue);
  border-color: #cfddff;
  background: var(--blue-soft);
}

.notebook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.notebook-card {
  min-height: 145px;
  padding: 14px;
  border: 1px solid #e7eaf0;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(31, 43, 70, 0.04);
}

.notebook-cover {
  position: relative;
  display: grid;
  height: 78px;
  place-items: center;
  overflow: hidden;
  border-radius: 11px;
  background: #eaf2ff;
}

.notebook-cover.is-gold {
  background: #fff4d8;
}

.notebook-cover.is-green {
  background: #e9f6e9;
}

.notebook-cover.is-lilac {
  background: #f1edff;
}

.notebook-cover img {
  width: 45px;
  opacity: 0.9;
}

.notebook-card strong {
  display: block;
  margin-top: 9px;
  font-size: 0.64rem;
}

.notebook-card small {
  color: #8b919a;
  font-size: 0.49rem;
}

.profile-demo {
  background: #fafbfe;
}

.profile-identity {
  display: grid;
  justify-items: center;
  margin: 22px 0 16px;
  text-align: center;
}

.profile-avatar {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--blue-soft);
  box-shadow: 0 0 0 1px #e3e7ef;
}

.profile-avatar img {
  width: 32px;
}

.profile-identity strong {
  margin-top: 8px;
  font-size: 0.78rem;
}

.profile-identity span {
  color: #848a93;
  font-family: var(--font-serif);
  font-size: 0.51rem;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px;
  border: 1px solid #e7eaf0;
  border-radius: 15px;
  background: #fff;
}

.profile-stat {
  display: grid;
  gap: 1px;
  text-align: center;
}

.profile-stat strong {
  font-size: 0.78rem;
}

.profile-stat span {
  color: #8a9099;
  font-size: 0.46rem;
}

.bible-map {
  margin-top: 15px;
  padding: 13px;
  border: 1px solid #e7eaf0;
  border-radius: 15px;
  background: #fff;
}

.bible-map-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.6rem;
  font-weight: 750;
}

.bible-map-header span:last-child {
  color: #8b919a;
  font-size: 0.49rem;
  font-weight: 500;
}

.map-dots {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  gap: 4px;
}

.map-dots i {
  aspect-ratio: 1;
  border-radius: 3px;
  background: #e9ebef;
}

.map-dots i:nth-child(-n + 7) {
  background: var(--blue);
}

.map-dots i:nth-child(8),
.map-dots i:nth-child(9) {
  background: var(--green);
}

.activity-mini {
  display: flex;
  gap: 7px;
  margin-top: 15px;
}

.activity-mini span {
  flex: 1;
  padding: 9px 5px;
  border: 1px solid #e7eaf0;
  border-radius: 11px;
  background: #fff;
  text-align: center;
  font-size: 0.48rem;
}

/* Demonstrations aligned with the current application screens */
.demo-stage {
  min-height: 760px;
}

.demo-screen {
  min-height: 674px;
}

.demo-home-body {
  padding: 31px 19px 76px;
}

.demo-home-greeting {
  display: flex;
  align-items: center;
  gap: 13px;
}

.demo-home-greeting .demo-app-logo {
  width: 30px;
}

.demo-home-greeting .demo-greeting {
  margin: 0;
}

.demo-home-body .demo-subtitle {
  margin: 7px 0 17px;
  font-size: 0.66rem;
}

.demo-home-body .demo-verse-card {
  min-height: 229px;
  padding: 17px;
  border-radius: 18px;
  background-position: 58% center;
}

.demo-home-body .demo-verse-card::before {
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.97) 46%, rgba(255, 255, 255, 0.28) 100%);
}

.demo-home-body .demo-verse-meta {
  justify-content: flex-start;
}

.demo-sun {
  margin-right: 5px;
  color: #d9a418;
  font-size: 0.92rem;
}

.demo-home-body .demo-verse-text {
  max-width: 230px;
  margin: 14px 0 8px;
  font-size: 1.01rem;
  line-height: 1.18;
}

.demo-verse-actions {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 15px;
}

.demo-read-chapter {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid #dde0e6;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 4px 12px rgba(28, 35, 48, 0.06);
  font-size: 0.59rem;
  font-weight: 760;
}

.demo-read-chapter svg,
.demo-share-button svg {
  width: 16px;
  height: 16px;
}

.demo-share-button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #59616d;
}

.demo-home-body .demo-section-label {
  margin-top: 15px;
}

.demo-home-body .demo-note-row {
  padding: 10px;
}

.demo-continue-card {
  margin-top: 13px;
  padding: 0 11px 11px;
  border: 1px solid #eceef2;
  border-radius: 14px;
  background: #fff;
}

.demo-continue-card .demo-section-label {
  margin: 10px 0 5px;
}

.demo-continue-card .demo-continue {
  padding: 4px 0 8px;
  border: 0;
}

.demo-read-button {
  display: grid;
  min-width: 42px;
  min-height: 29px;
  place-items: center;
  color: var(--blue);
  border: 1px solid #e2e5ea;
  border-radius: 10px;
  font-size: 0.58rem;
  font-weight: 720;
}

.demo-progress-track {
  display: block;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf0f3;
}

.demo-progress-track i {
  display: block;
  width: 3%;
  height: 100%;
  background: var(--blue);
}

.reader-demo .reader-progress {
  margin-top: 0;
}

.reader-toolbar {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  min-height: 60px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid #f0f1f3;
}

.reader-toolbar-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.reader-toolbar strong {
  text-align: center;
  font-size: 0.72rem;
}

.reader-toolbar strong small {
  margin-left: 4px;
  color: #7b8189;
}

.reader-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.reader-toolbar-actions svg {
  width: 18px;
  height: 18px;
}

.reader-toolbar-actions b {
  font-size: 0.75rem;
}

.reader-demo .reader-body {
  padding: 35px 18px 72px;
}

.reader-book-label {
  color: #7d838c;
  font-size: 0.63rem;
  font-weight: 650;
}

.reader-demo .reader-heading {
  margin: 11px 0 8px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.72rem;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.reader-demo .reader-chapter {
  margin: 0 0 27px;
  color: #8c929a;
  text-align: left;
  font-size: 0.58rem;
}

.reader-demo .reader-copy {
  font-size: 0.91rem;
  line-height: 1.48;
  text-align: justify;
}

.reader-demo .reader-copy p {
  position: relative;
  margin: 0 0 13px;
  padding-left: 23px;
}

.reader-demo .verse-number {
  position: absolute;
  top: 1px;
  left: 0;
  margin: 0;
  font-size: 0.48rem;
}

.demo-notes-body {
  padding: 40px 20px 78px;
}

.demo-notes-body .notes-title-row {
  margin: 0;
}

.demo-notes-body .notes-title-row h3 {
  color: #59606b;
  font-size: 1.72rem;
}

.notes-toolbar-icons {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #17191d;
}

.notes-toolbar-icons svg {
  width: 22px;
  height: 22px;
}

.notes-toolbar-icons b {
  font-size: 1.05rem;
  transform: rotate(90deg);
}

.notes-count {
  margin: 5px 0 30px;
  color: #868c95;
  font-size: 0.66rem;
}

.notebook-library {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 27px;
}

.notebook-entry {
  display: grid;
  justify-items: center;
  gap: 13px;
}

.notebook-cover-real {
  position: relative;
  width: 130px;
  height: 202px;
  overflow: visible;
  background: transparent;
}

.notebook-cover-real img {
  width: 145px;
  max-width: none;
}

.notebook-cover-real strong {
  position: absolute;
  top: 68px;
  left: 36px;
  z-index: 2;
  color: #fff;
  font-size: 0.76rem;
  line-height: 1.25;
}

.notebook-entry small {
  color: #8b9199;
  font-size: 0.49rem;
  white-space: nowrap;
}

.notebook-create {
  display: grid;
  width: 118px;
  height: 208px;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: #69707a;
  border: 1.5px dashed #cfd3d9;
  border-radius: 14px;
}

.notebook-create b {
  font-size: 1.55rem;
  font-weight: 400;
}

.notebook-create span {
  font-size: 0.58rem;
}

.demo-profile-body {
  padding: 40px 19px 74px;
}

.demo-profile-body .profile-title-row {
  margin: 0;
}

.demo-profile-body .profile-title-row h3 {
  color: #59606b;
  font-size: 1.72rem;
}

.demo-profile-body .profile-title-row > span {
  color: #3f5d86;
  font-size: 0.62rem;
  font-weight: 700;
}

.demo-profile-body .profile-identity {
  display: grid;
  grid-template-columns: 68px 1fr;
  justify-items: stretch;
  align-items: center;
  gap: 15px;
  margin: 25px 0 24px;
  text-align: left;
}

.demo-profile-body .profile-avatar {
  width: 68px;
  height: 68px;
  color: var(--blue);
  border: 0;
  background: #eaf2ff;
  box-shadow: none;
  font-size: 1.35rem;
  font-weight: 500;
}

.profile-copy {
  display: grid;
  gap: 5px;
}

.profile-copy strong {
  margin: 0;
  font-size: 0.94rem;
}

.profile-copy em {
  color: #5c626b;
  font-family: var(--font-serif);
  font-size: 0.68rem;
  font-style: normal;
  line-height: 1.35;
}

.profile-copy b {
  color: #2f6fae;
  font-size: 0.6rem;
}

.profile-summary-card {
  padding: 16px;
  overflow: hidden;
  border: 1px solid #e4e7eb;
  border-radius: 17px;
  background: #fff;
}

.profile-summary-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.profile-summary-head strong {
  color: #5d636d;
  font-size: 0.78rem;
}

.profile-summary-head span {
  color: #466185;
  font-size: 0.58rem;
  font-weight: 650;
}

.demo-profile-body .profile-stats {
  gap: 18px;
  padding: 0;
  overflow: visible;
  border: 0;
}

.demo-profile-body .profile-stat {
  justify-items: start;
  text-align: left;
}

.demo-profile-body .profile-stat i {
  color: #3b87cb;
  font-size: 0.68rem;
  font-style: normal;
}

.demo-profile-body .profile-stat strong {
  color: #59606a;
  font-size: 0.96rem;
}

.demo-profile-body .profile-stat span {
  font-size: 0.46rem;
  white-space: nowrap;
}

.profile-map-title {
  margin-top: 20px;
}

.demo-profile-body .bible-map {
  margin-top: 0;
  padding: 13px;
}

.demo-profile-body .bible-map-header {
  font-size: 0.61rem;
}

.demo-profile-body .map-dots {
  grid-template-columns: repeat(13, 1fr);
  gap: 4px;
}

.demo-profile-body .map-dots i {
  background: #e5eaed;
}

.demo-profile-body .map-dots i:nth-child(1),
.demo-profile-body .map-dots i:nth-child(2) {
  background: #4d92dc;
}

.demo-profile-body .bible-map-new {
  margin-top: 10px;
}

.demo-profile-body .map-dots-new i {
  background: #e5eaed;
}

.demo-profile-body .map-dots-new i:nth-child(9),
.demo-profile-body .map-dots-new i:nth-child(26) {
  background: #4d92dc;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 38px;
}

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

.fact .num {
  display: block;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.05em;
}

.fact .lbl {
  display: block;
  margin-top: 8px;
  color: var(--ink-faint);
  font-size: 0.82rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card,
.feature-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.card p {
  margin: 9px 0 0;
  color: var(--ink-soft);
}

.card p + p {
  margin-top: 13px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  position: relative;
  padding: 12px 0 12px 31px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.benefits li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--blue-soft);
  box-shadow: inset 0 0 0 5px var(--blue-soft);
  content: "✓";
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 17px;
  text-align: center;
}

.split-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: stretch;
  gap: 22px;
}

.story-card {
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.story-card p {
  margin: 16px 0 0;
  color: var(--ink-soft);
}

.story-image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: url("../images/floresta-luz-do-sol.jpg") center / cover;
}

.story-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 36, 0.58), transparent 65%);
  content: "";
}

.story-image-copy {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 1;
  color: #fff;
}

.story-image-copy strong {
  display: block;
  font-size: 1.2rem;
}

.story-image-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.store-section {
  padding: 76px 0;
}

.store-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid #dbe5fb;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 15%, rgba(74, 131, 255, 0.18), transparent 30%),
    var(--blue-pale);
}

.store-panel h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.store-panel p {
  max-width: 650px;
  margin: 13px 0 0;
  color: var(--ink-soft);
}

.store-panel .play-store-embed {
  margin: 0;
}

.page-head {
  position: relative;
  padding: 72px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 12%, rgba(74, 131, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #fff, #fbfcff);
}

.page-head::after {
  position: absolute;
  right: max(20px, calc((100vw - var(--max-width)) / 2));
  bottom: -56px;
  width: 170px;
  height: 145px;
  background: url("../brand/only_logo.svg") center / contain no-repeat;
  content: "";
  opacity: 0.035;
  transform: rotate(-7deg);
}

.page-head h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 6vw, 4.6rem);
}

.page-head p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.prose {
  max-width: var(--reading-width);
}

.resource-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 42px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-alt);
}

.resource-jump a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 13px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.resource-jump a:hover {
  color: var(--blue-strong);
  border-color: #cbdcff;
  transform: translateY(-1px);
}

.feature-tutorial {
  margin: 0 0 78px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid #dce6fb;
  border-radius: 28px;
  background: var(--blue-pale);
}

.feature-tutorial-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
}

.feature-tutorial-head > p {
  max-width: 650px;
  margin: 13px 0 0;
  color: var(--ink-soft);
}

.feature-tutorial-stage {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  margin-top: 28px;
  border: 1px solid #dfe4ee;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(31, 43, 70, 0.07);
}

.feature-tutorial-panel {
  display: grid;
  grid-template-columns: minmax(190px, 0.65fr) minmax(390px, 1.35fr);
  align-items: stretch;
  min-height: 500px;
}

.feature-tutorial-panel.is-active .feature-tutorial-copy {
  animation: tutorial-assemble-left 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feature-tutorial-panel.is-active .selection-tutorial-canvas,
.feature-tutorial-panel.is-active .share-tutorial-canvas,
.feature-tutorial-panel.is-active .notes-tutorial-canvas {
  animation: tutorial-assemble-right 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feature-tutorial-panel.is-leaving .feature-tutorial-copy {
  animation: tutorial-disassemble-left 680ms cubic-bezier(0.55, 0, 1, 0.45) both;
}

.feature-tutorial-panel.is-leaving .selection-tutorial-canvas,
.feature-tutorial-panel.is-leaving .share-tutorial-canvas,
.feature-tutorial-panel.is-leaving .notes-tutorial-canvas {
  animation: tutorial-disassemble-right 680ms cubic-bezier(0.55, 0, 1, 0.45) both;
}

@keyframes tutorial-assemble-left {
  from {
    opacity: 0;
    transform: translateX(-38px) rotate(-1.5deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes tutorial-assemble-right {
  from {
    opacity: 0;
    transform: translateX(44px) scale(0.965);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes tutorial-disassemble-left {
  to {
    opacity: 0;
    transform: translateX(-42px) rotate(1deg);
  }
}

@keyframes tutorial-disassemble-right {
  to {
    opacity: 0;
    transform: translateX(48px) scale(0.955);
  }
}

.feature-tutorial-panel[hidden] {
  display: none;
}

.feature-tutorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.feature-step {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--blue);
  border-radius: 10px;
  background: var(--blue-soft);
  font-size: 0.71rem;
  font-weight: 800;
}

.feature-tutorial-copy h3 {
  font-size: 1.25rem;
}

.feature-tutorial-copy p {
  margin: 11px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.selection-tutorial-canvas,
.share-tutorial-canvas,
.notes-tutorial-canvas {
  position: relative;
  min-width: 0;
  min-height: 500px;
  overflow: hidden;
  background: #fff;
}

.selection-tutorial-canvas {
  padding: 0 24px 25px;
}

.tutorial-reader-bar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  margin: 0 -24px;
  padding: 0 22px;
  border-bottom: 1px solid #eef0f3;
  font-size: 0.78rem;
}

.tutorial-reader-bar > span {
  min-width: 55px;
  font-size: 1rem;
}

.tutorial-reader-bar > span:last-child {
  text-align: right;
}

.tutorial-reader-content {
  padding: 37px 12px 0;
}

.tutorial-reader-content small {
  color: #7e858f;
  font-size: 0.67rem;
  font-weight: 650;
}

.tutorial-reader-content h4 {
  margin: 7px 0 28px;
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: -0.035em;
}

.tutorial-reader-content p {
  position: relative;
  margin: 0 0 18px;
  padding-left: 22px;
  color: #25282d;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.58;
}

.tutorial-reader-content sup {
  position: absolute;
  top: 3px;
  left: 0;
  color: #868c95;
  font-family: var(--font-sans);
  font-size: 0.56rem;
}

.tutorial-selected {
  position: relative;
  padding: 1px 0;
  background: linear-gradient(90deg, #ffe6a6, #ffe6a6) left 85% / 0% 72% no-repeat;
}

.selection-menu {
  position: absolute;
  top: var(--selection-menu-top, 142px);
  right: 17px;
  left: 17px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 8px;
  border: 1px solid #e2e5ea;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 40px rgba(31, 43, 70, 0.15);
  opacity: 0;
}

.selection-menu span {
  display: grid;
  min-height: 38px;
  flex: 1;
  place-items: center;
  gap: 2px;
  color: #5e6570;
  border-radius: 10px;
  font-size: 0.54rem;
  text-align: center;
}

.selection-menu span:first-child {
  color: var(--ink);
  background: #fff8e5;
}

.color-dot {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffd96d;
}

.tutorial-touch {
  position: absolute;
  z-index: 6;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #68717d;
  border: 1px solid rgba(214, 219, 227, 0.96);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 25px rgba(31, 43, 70, 0.17);
  pointer-events: none;
  opacity: 0;
}

.tutorial-touch::after {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(74, 131, 255, 0.28);
  border-radius: inherit;
  content: "";
  opacity: 0;
}

.tutorial-touch svg {
  width: 25px;
  height: 29px;
}

.tutorial-touch-selection {
  top: calc(100% - 70px);
  left: calc(100% - 62px);
}

.feature-tutorial-panel.is-running .tutorial-selected {
  animation: tutorial-select 6.1s ease both;
}

.feature-tutorial-panel.is-running .selection-menu {
  animation: tutorial-menu 6.1s ease both;
}

.feature-tutorial-panel.is-running .tutorial-touch-selection {
  animation: tutorial-touch-selection 6.1s ease both;
}

.feature-tutorial-panel.is-running .tutorial-touch::after {
  animation: tutorial-ripple 6.1s ease both;
}

@keyframes tutorial-select {
  0%,
  34% {
    background-size: 0% 72%;
  }
  53%,
  100% {
    background-size: 100% 72%;
  }
}

@keyframes tutorial-menu {
  0%,
  52% {
    opacity: 0;
    transform: translateY(9px) scale(0.98);
  }
  64%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes tutorial-touch-selection {
  0% {
    top: calc(100% - 70px);
    left: calc(100% - 62px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  29%,
  45% {
    top: var(--touch-target-y, 220px);
    left: var(--touch-target-x, 52%);
    opacity: 1;
  }
  53%,
  100% {
    top: var(--touch-target-y, 220px);
    left: var(--touch-target-x, 52%);
    opacity: 0;
  }
}

@keyframes tutorial-ripple {
  0%,
  28% {
    opacity: 0;
    transform: scale(0.55);
  }
  34% {
    opacity: 1;
  }
  45% {
    opacity: 0;
    transform: scale(1.35);
  }
  100% {
    opacity: 0;
  }
}

.share-tutorial-canvas {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 12%, rgba(74, 131, 255, 0.13), transparent 32%),
    #f8f9fc;
}

.tutorial-share-square {
  position: relative;
  width: min(100%, 305px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 21px;
  background: #f7f0e7 url("../images/montanhas-amanhecer.png") center / cover;
  box-shadow: 0 16px 38px rgba(31, 43, 70, 0.14);
  transform: scale(0.97);
}

.tutorial-share-square::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.93) 45%, rgba(255, 255, 255, 0.14));
  content: "";
}

.tutorial-share-square::after {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(53, 112, 226, 0.28);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0;
  transform: scale(0.55);
}

.tutorial-share-content {
  position: relative;
  z-index: 1;
  padding: 40px 31px;
}

.tutorial-share-content p {
  max-width: 220px;
  margin: 0 0 18px;
  color: #111317;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.12;
}

.tutorial-share-content strong {
  font-size: 0.64rem;
}

.tutorial-share-square > img {
  position: absolute;
  right: 18px;
  bottom: 14px;
  z-index: 1;
  width: 88px;
  opacity: 0.64;
}

.tutorial-generate-button {
  position: relative;
  display: grid;
  width: min(100%, 305px);
  margin-top: 16px;
  overflow: hidden;
  min-height: 45px;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: #426ba4;
  box-shadow: 0 10px 24px rgba(51, 83, 128, 0.18);
  font-size: 0.72rem;
}

.tutorial-generate-button > span {
  grid-area: 1 / 1;
  transition: none;
}

.tutorial-generate-ready {
  opacity: 0;
  transform: translateY(8px);
}

.tutorial-touch-share {
  bottom: 27px;
  left: calc(50% - 23px);
}

.feature-tutorial-panel.is-running .tutorial-share-square {
  animation: tutorial-square 5.7s ease both;
}

.feature-tutorial-panel.is-running .tutorial-share-square::after {
  animation: tutorial-image-ready 5.7s ease both;
}

.feature-tutorial-panel.is-running .tutorial-generate-button {
  animation: tutorial-generate-button 5.7s ease both;
}

.feature-tutorial-panel.is-running .tutorial-generate-default {
  animation: tutorial-generate-default 5.7s ease both;
}

.feature-tutorial-panel.is-running .tutorial-generate-ready {
  animation: tutorial-generate-ready 5.7s ease both;
}

.feature-tutorial-panel.is-running .tutorial-touch-share {
  animation: tutorial-touch-share 5.7s ease both;
}

@keyframes tutorial-square {
  0%,
  48% {
    filter: saturate(0.76) brightness(1.04);
    transform: scale(0.965);
  }
  67%,
  100% {
    filter: saturate(1);
    transform: scale(1);
  }
}

@keyframes tutorial-image-ready {
  0%,
  52% {
    opacity: 0;
    transform: scale(0.55);
  }
  68%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes tutorial-generate-button {
  0%,
  44% {
    background: #426ba4;
    transform: scale(1);
  }
  50% {
    background: #345b90;
    transform: scale(0.975);
  }
  63%,
  100% {
    background: #3579c7;
    transform: scale(1);
  }
}

@keyframes tutorial-generate-default {
  0%,
  51% {
    opacity: 1;
    transform: translateY(0);
  }
  61%,
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes tutorial-generate-ready {
  0%,
  54% {
    opacity: 0;
    transform: translateY(8px);
  }
  66%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tutorial-touch-share {
  0% {
    bottom: 4px;
    left: calc(100% - 61px);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  38%,
  48% {
    bottom: 27px;
    left: calc(50% - 23px);
    opacity: 1;
  }
  58%,
  100% {
    bottom: 27px;
    left: calc(50% - 23px);
    opacity: 0;
  }
}

.notes-tutorial-canvas {
  padding: 34px 31px;
  background: #fff;
}

.tutorial-notes-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tutorial-notes-head strong {
  color: #59606b;
  font-size: 1.65rem;
}

.tutorial-notes-head span {
  color: #202329;
}

.tutorial-note-count {
  position: relative;
  min-height: 18px;
  margin-top: 2px;
  color: #8a9098;
  font-size: 0.66rem;
}

.tutorial-note-count span {
  position: absolute;
  top: 0;
  left: 0;
}

.tutorial-note-count span:last-child {
  opacity: 0;
  transform: translateY(6px);
}

.tutorial-notebooks {
  position: relative;
  min-height: 285px;
  margin-top: 38px;
}

.tutorial-notebook {
  position: absolute;
  top: 0;
  left: 7%;
  display: grid;
  justify-items: center;
  opacity: 0;
  transform: translateX(-32px) rotate(-4deg) scale(0.9);
}

.tutorial-notebook img {
  width: 145px;
}

.tutorial-notebook > strong {
  position: absolute;
  top: 78px;
  left: 44px;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.2;
}

.tutorial-notebook > small {
  margin-top: 10px;
  color: #8b9199;
  font-size: 0.5rem;
}

.tutorial-new-note {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  width: 128px;
  height: 222px;
  place-items: center;
  align-content: center;
  gap: 13px;
  color: #6d737c;
  border: 1.5px dashed #cbd0d7;
  border-radius: 15px;
  transform: translateX(-50%);
}

.tutorial-new-note b {
  font-size: 1.65rem;
  font-weight: 400;
}

.tutorial-new-note span {
  font-size: 0.62rem;
}

.tutorial-touch-note {
  top: 198px;
  left: calc(50% - 23px);
}

.feature-tutorial-panel.is-running .tutorial-touch-note {
  animation: tutorial-touch-note 5.9s ease both;
}

.feature-tutorial-panel.is-running .tutorial-new-note {
  animation: tutorial-note-target 5.9s ease both;
}

.feature-tutorial-panel.is-running .tutorial-notebook {
  animation: tutorial-notebook-created 5.9s ease both;
}

.feature-tutorial-panel.is-running .tutorial-note-count span:first-child {
  animation: tutorial-count-empty 5.9s ease both;
}

.feature-tutorial-panel.is-running .tutorial-note-count span:last-child {
  animation: tutorial-count-full 5.9s ease both;
}

@keyframes tutorial-touch-note {
  0% {
    top: 430px;
    left: calc(100% - 59px);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  35%,
  47% {
    top: 198px;
    left: calc(50% - 23px);
    opacity: 1;
  }
  56%,
  100% {
    top: 198px;
    left: calc(50% - 23px);
    opacity: 0;
  }
}

@keyframes tutorial-note-target {
  0%,
  38% {
    left: 50%;
    border-color: #cbd0d7;
    background: #fff;
    transform: translateX(-50%) scale(1);
  }
  47% {
    left: 50%;
    border-color: #9bb9fa;
    background: var(--blue-soft);
    transform: translateX(-50%) scale(0.97);
  }
  65%,
  100% {
    left: 76%;
    border-color: #cbd0d7;
    background: #fff;
    transform: translateX(-50%) scale(1);
  }
}

@keyframes tutorial-notebook-created {
  0%,
  48% {
    opacity: 0;
    transform: translateX(-32px) rotate(-4deg) scale(0.9);
  }
  66%,
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes tutorial-count-empty {
  0%,
  51% {
    opacity: 1;
    transform: translateY(0);
  }
  61%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes tutorial-count-full {
  0%,
  54% {
    opacity: 0;
    transform: translateY(6px);
  }
  66%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.tutorial-disclaimer {
  margin: 13px 2px 0 !important;
  color: var(--ink-faint) !important;
  font-size: 0.7rem;
}

.prose h2 {
  margin: 54px 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.035em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 34px 0 10px;
}

.prose p {
  color: var(--ink-soft);
}

.prose ul,
.prose ol {
  padding-left: 22px;
  color: var(--ink-soft);
}

.prose li {
  margin: 8px 0;
}

.prose li::marker {
  color: var(--blue);
}

.lede {
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.terms {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.term {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.term dt {
  color: var(--ink);
  font-weight: 750;
}

.term dd {
  margin: 0;
  color: var(--ink-soft);
}

.note,
.callout-warn {
  margin: 24px 0;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
}

.note {
  color: #325a9f;
  border: 1px solid #d3e1ff;
  background: var(--blue-soft);
}

.note strong {
  color: #27509a;
}

.callout-warn {
  color: #745418;
  border: 1px solid #f0dfb8;
  background: var(--amber-soft);
}

.callout-warn strong {
  color: #67480d;
}

.callout-warn p:last-child {
  margin-bottom: 0;
}

.placeholder {
  display: inline-block;
  padding: 1px 6px;
  color: #745418;
  border: 1px dashed #d7b66a;
  border-radius: 6px;
  background: var(--amber-soft);
  font-size: 0.9em;
  font-weight: 650;
}

.steps {
  counter-reset: step;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 38px;
  margin: 12px 0;
  padding: 5px 0 5px 46px;
  color: var(--ink-soft);
}

.steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue);
  border-radius: 11px;
  background: var(--blue-soft);
  content: counter(step);
  counter-increment: step;
  font-size: 0.8rem;
  font-weight: 780;
}

details.faq,
.guide {
  margin: 10px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}

details.faq summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 680;
  list-style: none;
}

details.faq summary::-webkit-details-marker {
  display: none;
}

details.faq summary::after {
  display: grid;
  width: 27px;
  height: 27px;
  flex: none;
  place-items: center;
  color: var(--blue);
  border-radius: 9px;
  background: var(--blue-soft);
  content: "+";
  font-size: 1.1rem;
  font-weight: 500;
}

details.faq[open] {
  border-color: #d7e2fb;
  box-shadow: var(--shadow-sm);
}

details.faq[open] summary::after {
  content: "−";
}

details.faq .faq-body {
  padding: 0 18px 18px;
  color: var(--ink-soft);
}

details.faq .faq-body p {
  margin: 0;
}

.contact-card {
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid #d6e2ff;
  border-radius: var(--radius);
  background: var(--blue-pale);
}

.email-link {
  font-size: clamp(1rem, 3vw, 1.24rem);
  font-weight: 760;
  overflow-wrap: anywhere;
}

.model-block {
  overflow-x: auto;
  padding: 19px;
  color: #283140;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.meta-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.meta-list .k {
  color: var(--ink);
  font-weight: 700;
}

.divider {
  height: 1px;
  margin: 36px 0;
  border: 0;
  background: var(--line);
}

.mt-0 {
  margin-top: 0 !important;
}

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

.site-footer {
  padding: 58px 0 28px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  background: #fbfcfe;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) 0.7fr 1fr;
  gap: 46px;
}

.site-footer h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 8px 0;
}

.site-footer a {
  color: var(--ink-soft);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--blue);
}

.footer-brand p {
  max-width: 390px;
  margin: 16px 0 0;
  color: var(--ink-faint);
  font-size: 0.91rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 42px;
  padding-top: 20px;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.is-visible > *:nth-child(2) {
  transition-delay: 70ms;
}

.stagger.is-visible > *:nth-child(3) {
  transition-delay: 140ms;
}

.stagger.is-visible > *:nth-child(4) {
  transition-delay: 210ms;
}

.stagger.is-visible > *:nth-child(5) {
  transition-delay: 280ms;
}

.stagger.is-visible > *:nth-child(6) {
  transition-delay: 350ms;
}

@media (max-width: 1000px) {
  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding-inline: 9px;
    font-size: 0.86rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 44px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .verse-visual {
    min-height: 460px;
  }

  .verse-visual-content {
    min-height: 460px;
    padding: 42px 34px;
  }

  .floating-chip--top {
    right: -10px;
  }

  .floating-chip--bottom {
    left: -12px;
  }

  .showcase-grid {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 36px;
  }

  .demo-stage {
    padding: 32px 22px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 82px;
  }

  .nav {
    min-height: 66px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 3px;
    max-height: 0;
    padding: 0 8px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 45px rgba(31, 43, 70, 0.14);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 260ms ease, opacity 180ms ease, transform 180ms ease, padding 180ms ease, border-color 180ms ease;
  }

  .nav-links.open {
    max-height: 520px;
    padding: 8px;
    border-color: var(--line);
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    min-height: 44px;
    padding: 9px 13px;
    border-radius: 12px;
  }

  .hero {
    padding-top: 62px;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 580px);
    margin-inline: auto;
  }

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

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

  .feature-tutorial-panel {
    grid-template-columns: 1fr;
  }

  .feature-tutorial-copy {
    padding: 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-tutorial-copy p {
    max-width: 560px;
  }


  .demo-controls {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    overflow-x: auto;
    padding: 0 2px 9px;
    scrollbar-width: thin;
  }

  .demo-control {
    grid-template-columns: 38px 1fr;
    min-width: 180px;
    padding: 11px;
  }

  .demo-control-icon {
    width: 38px;
    height: 38px;
  }

  .demo-control-copy span {
    display: none;
  }

  .demo-control[aria-selected="true"] {
    transform: translateY(-2px);
  }

  .split-story {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 320px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container,
  .reading-container,
  .nav {
    width: min(100% - 30px, var(--max-width));
  }

  section {
    padding: 68px 0;
  }

  .section-compact {
    padding: 52px 0;
  }

  .brand-logo {
    width: 145px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 3.75rem);
  }

  .hero {
    padding: 48px 0 68px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-copy .lead {
    margin-top: 22px;
  }

  .actions {
    align-items: stretch;
  }

  .actions .btn {
    flex: 1 1 190px;
  }

  .hero-actions .play-store-embed {
    flex: 1 1 245px;
  }

  .hero-visual {
    min-height: 450px;
  }

  .verse-visual {
    min-height: 430px;
    border-radius: 26px;
  }

  .verse-visual-content {
    min-height: 430px;
    padding: 38px 27px;
  }

  .verse-quote {
    max-width: 280px;
  }

  .floating-chip--top {
    top: 22px;
    right: -2px;
  }

  .floating-chip--bottom {
    bottom: 22px;
    left: -2px;
  }

  .focus-grid,
  .grid-2,
  .grid-3,
  .benefits,
  .facts {
    grid-template-columns: 1fr;
  }

  .facts {
    gap: 0;
  }

  .fact {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 4px;
  }

  .fact .lbl {
    margin: 0;
    text-align: right;
  }

  .demo-stage {
    min-height: 735px;
    margin-inline: -6px;
    padding: 26px 10px;
    border-radius: 26px;
  }

  .demo-screen {
    min-height: 674px;
    border-radius: 27px;
  }

  .feature-tutorial {
    margin-inline: -6px;
    padding: 15px;
    border-radius: 22px;
  }

  .feature-tutorial-copy {
    padding: 21px;
  }

  .selection-tutorial-canvas,
  .share-tutorial-canvas,
  .notes-tutorial-canvas {
    min-height: 480px;
  }

  .selection-tutorial-canvas {
    padding-inline: 14px;
  }

  .tutorial-reader-bar {
    margin-inline: -14px;
    padding-inline: 15px;
  }

  .tutorial-reader-content {
    padding-inline: 4px;
  }

  .tutorial-reader-content h4 {
    font-size: 1.75rem;
  }

  .tutorial-reader-content p {
    font-size: 0.94rem;
  }

  .selection-menu {
    right: 8px;
    left: 8px;
  }

  .selection-menu span {
    font-size: 0.48rem;
  }

  .share-tutorial-canvas {
    padding: 18px 12px;
  }

  .tutorial-share-square {
    width: min(100%, 285px);
  }

  .tutorial-generate-button {
    width: min(100%, 285px);
  }

  .tutorial-share-content {
    padding: 34px 27px;
  }

  .tutorial-share-content p {
    font-size: 1.42rem;
  }

  .notes-tutorial-canvas {
    padding: 28px 17px;
  }

  .tutorial-notebook img {
    width: 132px;
  }

  .tutorial-notebook > strong {
    top: 71px;
    left: 38px;
  }

  .tutorial-new-note {
    width: 116px;
    height: 204px;
  }

  .store-panel {
    grid-template-columns: 1fr;
  }

  .store-panel .play-store-embed {
    width: 100%;
    max-width: 310px;
  }

  .page-head {
    padding: 54px 0 46px;
  }

  .page-head::after {
    display: none;
  }

  .term {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .meta-list li {
    display: grid;
    gap: 3px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 390px) {
  .floating-chip {
    padding: 9px 11px;
    font-size: 0.72rem;
  }

  .demo-app-body {
    padding-inline: 15px;
  }

  .demo-stage {
    padding-inline: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .stagger > * {
    opacity: 1;
    transform: none;
  }
}
