.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-sm);
  transition:
    transform 0.4s var(--ease-premium),
    box-shadow 0.4s var(--ease-premium),
    background 0.4s var(--ease-premium),
    border-color 0.4s var(--ease-premium);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #a8884a);
  color: var(--bg-deep);
  border: 1px solid var(--gold-light);
  box-shadow: 0 8px 28px rgba(201, 169, 97, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201, 169, 97, 0.35);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

.inline-form input:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-secondary {
  background: transparent;
  color: var(--text-cream);
  border: 1px solid var(--border-gold-strong);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  box-shadow: 0 0 24px var(--gold-glow);
}

.btn-nav {
  padding: 0.65rem 1rem;
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid var(--border-gold-strong);
  color: var(--gold-light);
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px var(--gold-glow);
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-sm);
  background: rgba(20, 15, 10, 0.75);
  transition:
    transform 0.4s var(--ease-premium),
    box-shadow 0.4s var(--ease-premium);
}

.app-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.2);
}

.app-store-badge svg {
  width: 28px;
  height: 28px;
  fill: var(--text-cream);
}

.app-store-badge-text {
  display: grid;
  gap: 0.1rem;
  text-align: left;
}

.app-store-badge-text small {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.app-store-badge-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-cream);
}

.stat-card {
  padding: 1.1rem 1rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform 0.45s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium),
    border-color 0.45s var(--ease-premium);
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold-strong);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 24px var(--gold-glow);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.topic-grid-7 .topic-card:nth-child(7):last-child {
  grid-column: 2;
}

.topic-card-featured {
  border-color: var(--border-gold-strong);
  box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.1);
}

.topic-card {
  padding: 1.5rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.45s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium),
    border-color 0.45s var(--ease-premium);
}

.topic-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-strong);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4), 0 0 28px var(--gold-glow);
}

.topic-icon {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.topic-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.topic-card p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.topic-meta {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.archive-list {
  display: grid;
  gap: 0.85rem;
}

.archive-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  background: rgba(20, 15, 10, 0.55);
  transition:
    transform 0.4s var(--ease-premium),
    border-color 0.4s var(--ease-premium),
    box-shadow 0.4s var(--ease-premium);
}

.archive-item:hover {
  transform: translateX(4px);
  border-color: var(--border-gold-strong);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.archive-number {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 4.5rem;
}

.archive-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.archive-preview {
  font-size: 0.88rem;
}

.archive-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.lead-magnet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lead-magnet-visual {
  perspective: 900px;
  display: grid;
  place-items: center;
  padding: 3rem 2rem;
  background: linear-gradient(145deg, rgba(26, 18, 10, 0.9), rgba(20, 15, 10, 0.6));
  border-right: 1px solid var(--border-gold);
}

.book-3d {
  width: 160px;
  height: 220px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-28deg) rotateX(6deg);
  transition: transform 0.6s var(--ease-premium);
}

.lead-magnet-visual:hover .book-3d {
  transform: rotateY(-18deg) rotateX(4deg) translateY(-6px);
}

.book-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2a2018, #14100a);
  border: 1px solid var(--border-gold-strong);
  border-radius: 2px 6px 6px 2px;
  box-shadow: 12px 16px 40px rgba(0, 0, 0, 0.55);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1rem;
}

.book-cover-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.book-cover h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.book-cover p {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.book-spine {
  position: absolute;
  left: -14px;
  top: 0;
  width: 14px;
  height: 100%;
  background: #0f0c08;
  border: 1px solid var(--border-gold);
  transform: rotateY(-90deg);
  transform-origin: right;
}

.lead-magnet-form {
  padding: clamp(2rem, 4vw, 3rem);
}

.lead-magnet-form h3 {
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
}

.lead-magnet-form > p {
  margin-bottom: 1.5rem;
}

.guide-coming-soon-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 97, 0.45);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.75rem;
}

.inline-form {
  display: flex;
  gap: 0.65rem;
}

.inline-form input {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  background: rgba(10, 8, 5, 0.65);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--text-cream);
  transition: border-color 0.35s var(--ease-premium);
}

.inline-form input::placeholder {
  color: rgba(244, 234, 213, 0.35);
}

.inline-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.form-note {
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testimonial-featured {
  padding: 2rem;
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.testimonial-featured blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.45;
  color: var(--text-cream);
  margin-bottom: 1.5rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  padding: 1.5rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  background: rgba(20, 15, 10, 0.55);
  transition:
    transform 0.4s var(--ease-premium),
    box-shadow 0.4s var(--ease-premium);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  background: rgba(201, 169, 97, 0.08);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-cream);
}

.testimonial-role {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  padding: 2rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.45s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium);
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.pricing-card.featured {
  border-color: var(--border-gold-strong);
  box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.15), 0 20px 48px rgba(0, 0, 0, 0.4);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -0.65rem;
  right: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), #a8884a);
  color: var(--bg-deep);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--gold-light);
  margin: 1rem 0;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-features {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.pricing-features li.included {
  color: var(--text-cream);
}

.pricing-features .check {
  color: var(--gold);
  flex-shrink: 0;
}

.pricing-features .dash {
  color: rgba(244, 234, 213, 0.25);
  flex-shrink: 0;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 760px;
}

.faq-item {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  background: rgba(20, 15, 10, 0.55);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-cream);
  transition: color 0.35s var(--ease-premium);
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-icon {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.4s var(--ease-premium);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-premium);
}

.faq-answer-inner {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.92rem;
}

.cta-final {
  text-align: center;
  padding-block: clamp(5rem, 12vw, 8rem);
}

.cta-final h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  max-width: 16ch;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.cta-final p {
  max-width: 46ch;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.cta-inline-form {
  max-width: 420px;
}

.beta-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  padding: 0.25rem 0.45rem;
  border-radius: var(--radius-sm);
  margin-left: 0.35rem;
  vertical-align: middle;
}

#toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 200;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-sm);
  background: rgba(20, 15, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  box-shadow: var(--shadow-deep);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.5s var(--ease-premium),
    opacity 0.5s var(--ease-premium);
}

#toast.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 900px) {
  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .topic-grid-7 .topic-card:nth-child(7):last-child {
    grid-column: auto;
  }

  .lead-magnet {
    grid-template-columns: 1fr;
  }

  .lead-magnet-visual {
    border-right: none;
    border-bottom: 1px solid var(--border-gold);
    padding: 2rem;
  }

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

  .archive-item {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .inline-form {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .topic-grid {
    grid-template-columns: 1fr;
  }
}

/* Legal pages */
body.legal-page {
  background: var(--bg-deep);
}

body.legal-page .page-content::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 0%, transparent 42%, rgba(10, 8, 5, 0.55) 78%, rgba(10, 8, 5, 0.92) 100%),
    radial-gradient(circle at 20% 10%, rgba(201, 169, 97, 0.06), transparent 40%);
}

body.legal-page .page-content {
  z-index: 2;
}

body.legal-page main > section {
  padding-block: 0;
}

body.legal-page .legal-hero {
  padding-top: calc(var(--nav-height) + 2.5rem);
  padding-bottom: 2rem;
}

body.legal-page .legal-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
}

body.legal-page .knowhow-main {
  padding-bottom: 3rem;
}

.legal-hero {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 2rem;
}

.legal-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  margin: 0 0 0.85rem;
}

.legal-updated {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.85rem;
}

.legal-content {
  max-width: 760px;
  margin-inline: auto;
  padding-bottom: 4rem;
}

.legal-card {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.legal-section {
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--border-gold);
}

.legal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-section:first-child {
  padding-top: 0;
}

.legal-section h2 {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  color: var(--text-cream);
}

.legal-section p,
.legal-section li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.75rem;
}

.legal-section li {
  position: relative;
  padding-left: 1.1rem;
}

.legal-section li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.legal-section a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.35s var(--ease-premium);
}

.legal-section a:hover {
  color: var(--text-cream);
}

.legal-section strong,
.legal-strong {
  color: var(--text-cream);
  font-weight: 600;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.35s var(--ease-premium);
}

.legal-back:hover {
  color: var(--gold-light);
}

.legal-pdf-note {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  background: rgba(201, 169, 97, 0.06);
  font-size: 0.88rem;
}

.legal-pdf-note a {
  color: var(--gold-light);
}

/* Know How — changelogs & guides */
.knowhow-shell {
  max-width: 760px;
  margin-inline: auto;
}

.knowhow-list {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 0;
}

body.legal-page .section-header.knowhow-section-header {
  margin-bottom: 1.5rem;
  text-align: left;
}

.knowhow-section-header .section-title {
  max-width: none;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.knowhow-section-header .section-lead {
  margin-top: 0.65rem;
  max-width: 58ch;
}

.knowhow-card {
  display: block;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  transition: border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.knowhow-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.knowhow-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.knowhow-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
}

.knowhow-date {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.knowhow-card h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.knowhow-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.knowhow-readmore {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.knowhow-intro {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-gold);
}

.knowhow-intro p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 62ch;
  margin: 0;
}

.changelog-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.changelog-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
  max-width: 62ch;
}

.changelog-callout {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(201, 169, 97, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.changelog-callout p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}
