:root {
  --text: #574f47;
  --text-h: #1f1a15;
  --bg: #faf7f2;
  --card-bg: #ffffff;
  --border: #e8e1d6;
  --accent: #0d9488;
  --accent-2: #d97706;
  --accent-contrast: #ffffff;
  --shadow: 0 20px 45px -15px rgba(31, 26, 21, 0.2);

  --sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --heading: 'Space Grotesk', var(--sans);

  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #c7bfb4;
    --text-h: #f7f3ed;
    --bg: #16140f;
    --card-bg: #201d17;
    --border: #322d24;
    --accent: #2dd4bf;
    --accent-2: #fbbf24;
    --shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.6);
  }

  .lang-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23c7bfb4'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.25a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z' clip-rule='evenodd'/%3E%3C/svg%3E");
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font: 16px/1.6 var(--sans);
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
  font-family: var(--heading);
  color: var(--text-h);
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font: 600 0.95rem var(--sans);
  padding: 0.7em 1.4em;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  white-space: nowrap;
}

.button-primary {
  background: var(--accent);
  color: var(--accent-contrast);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.button-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text-h);
}

.button-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.button-lg {
  padding: 0.85em 1.7em;
  font-size: 1.02rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-h);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.15rem;
  margin-right: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-logo {
  width: 30px;
  height: auto;
  color: var(--accent);
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  font: 600 0.8rem var(--sans);
  color: var(--text-h);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 1.6rem 0.3rem 0.7rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23574f47'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.25a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.55rem center;
  background-size: 14px;
}

.lang-select:hover {
  border-color: var(--accent);
}

.lang-select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.main-nav > * {
  flex-shrink: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
}

.main-nav a:hover {
  color: var(--accent);
}

.main-nav a.button-primary,
.main-nav a.button-primary:hover {
  color: var(--accent-contrast);
}

.nav-login {
  color: var(--text-h) !important;
  font-weight: 600;
}

.nav-toggle-input,
.nav-toggle-btn {
  display: none;
}

/* Hero */
.hero {
  padding: 72px 0 56px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 30px;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.75;
}

/* Browser mockup / screenshot placeholders */
.browser-frame {
  margin: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.shot {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.shot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  /* Chromium's default downscale filter blurs/aliases fine UI text far more than
     Firefox's — this forces a sharper resampling on Blink/WebKit. No effect on
     Firefox, which already renders fine without it. */
  image-rendering: -webkit-optimize-contrast;
}

/* Mockups: static HTML recreations of real app screens (not screenshots) */
.mockup {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: 18px 20px;
  background: var(--card-bg);
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: left;
}

/* Compact variant for the smaller screenshot-grid cards (~190px tall) */
.mockup.compact {
  padding: 10px 13px;
  font-size: 0.6rem;
  line-height: 1.25;
}

.mockup.compact .mockup-callout {
  white-space: nowrap;
}

.mockup.compact .mockup-heading {
  font-size: 0.85rem;
  margin-bottom: 1px;
}

.mockup.compact .mockup-sub {
  font-size: 0.62rem;
  margin-bottom: 8px;
}

.mockup.compact .mockup-row {
  margin-bottom: 8px;
}

.mockup.compact .mockup-pill {
  font-size: 0.6rem;
  padding: 4px 9px;
}

.mockup.compact .mockup-card {
  padding: 6px 9px;
}

.mockup.compact .mockup-stat {
  margin: 4px 0 8px;
  gap: 20px;
}

.mockup.compact .mockup-stat b {
  font-size: 1.4rem;
}

.mockup.compact .mockup-line {
  padding: 4px 0;
}

.mockup.compact .mockup-trow {
  padding: 4px 9px;
}

.mockup.compact .mockup-callout {
  margin-top: 3px;
  padding: 4px 9px;
}

.mockup.compact .mockup-total {
  margin-top: 3px;
}

.mockup.compact .mockup-total b {
  font-size: 1rem;
}

.mockup-heading {
  font-family: var(--heading);
  font-weight: 700;
  color: var(--text-h);
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.mockup-sub {
  color: var(--text);
  opacity: 0.75;
  font-size: 0.72rem;
  margin-bottom: 14px;
}

.mockup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.mockup-pill {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-contrast);
  font-weight: 600;
  font-size: 0.68rem;
  padding: 5px 12px;
  border-radius: 999px;
}

.mockup-pill.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-h);
}

.mockup-cards {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mockup-card {
  flex: 1;
  min-width: 150px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  background: var(--bg);
}

.mockup-card strong {
  display: block;
  color: var(--text-h);
  font-weight: 700;
  margin-bottom: 2px;
}

.mockup-card span {
  display: block;
  opacity: 0.7;
}

.mockup-card em {
  display: block;
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
  margin-top: 6px;
}

.mockup-stat {
  display: flex;
  gap: 28px;
  align-items: baseline;
  margin: 8px 0 16px;
}

.mockup-stat b {
  font-family: var(--heading);
  font-size: 1.9rem;
  color: var(--text-h);
  line-height: 1;
}

.mockup-stat small {
  display: block;
  opacity: 0.7;
  margin-top: 4px;
}

.mockup-line {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}

.mockup-line span:first-child {
  color: var(--text);
  opacity: 0.8;
}

.mockup-line span:last-child {
  color: var(--text-h);
  font-weight: 600;
}

.mockup-table {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
}

.mockup-thead {
  display: flex;
  justify-content: space-between;
  padding: 7px 12px;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.55;
  border-bottom: 1px solid var(--border);
}

.mockup-trow {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}

.mockup-trow:last-child {
  border-bottom: none;
}

.mockup-trow strong {
  color: var(--text-h);
}

.mockup-callout {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-2) 14%, var(--bg));
  color: var(--text-h);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.mockup-total {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--heading);
}

.mockup-total b {
  font-size: 1.2rem;
  color: var(--accent);
}

/* Logos strip */
.logos-strip {
  padding: 20px 0 40px;
  text-align: center;
}

.logos-strip p {
  color: var(--text);
  opacity: 0.7;
  font-size: 0.92rem;
}

/* Section shared */
section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
}

.section-lead {
  text-align: center;
  max-width: 46ch;
  margin: 0 auto 44px;
  color: var(--text);
  opacity: 0.85;
}

.features,
.how-it-works,
.screenshots {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-contrast);
  font-family: var(--heading);
  font-weight: 700;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* Screenshots grid */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Pricing */
.pricing {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  justify-content: center;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}

.pricing-card-highlight {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.pricing-name {
  font-family: var(--heading);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.price {
  font-family: var(--heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 6px;
}

.price-period {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.7;
  margin-left: 0.3em;
}

.pricing-desc {
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.4;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-card .button {
  align-self: stretch;
  text-align: center;
}

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

/* FAQ */
.faq {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 28px 18px 0;
  position: relative;
  font-weight: 600;
  color: var(--text-h);
  font-family: var(--heading);
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.15s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
  padding-bottom: 20px;
  margin: 0;
}

/* CTA band */
.cta-band {
  padding: 72px 0;
  text-align: center;
  background: color-mix(in srgb, var(--accent) 10%, var(--bg));
  border-top: 1px solid var(--border);
}

.cta-band h2 {
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--text);
  margin-bottom: 28px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

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

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-copy {
  color: var(--text);
  opacity: 0.6;
  font-size: 0.85rem;
  width: 100%;
  text-align: center;
  order: 3;
}

/* Responsive */
@media (max-width: 1120px) {
  .nav-toggle-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    cursor: pointer;
  }

  .nav-toggle-btn span {
    display: block;
    height: 2px;
    background: var(--text-h);
    border-radius: 2px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.25s ease,
      padding 0.25s ease;
  }

  .nav-toggle-input:checked ~ .main-nav {
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px 24px 28px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

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

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

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

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

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

/* Contact FAB */
.contact-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-contrast);
  box-shadow: var(--shadow);
  text-decoration: none;
  z-index: 40;
  transition: transform 0.15s ease;
}

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

/* ---------- Legal pages (terms / privacy / refund policy) ---------- */

.legal-page {
  max-width: 760px;
  padding: 3.5rem 24px 5rem;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.legal-page .legal-updated {
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-page p,
.legal-page li {
  margin-bottom: 0.85rem;
  line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.4rem;
  margin: 0 0 1rem;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .contact-fab {
    right: 1rem;
    bottom: 1rem;
  }
}

/* ---------- Blog teaser (home page) ---------- */

.blog-teaser {
  padding: 0 0 48px;
}

.blog-teaser-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-teaser-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}

.blog-teaser-card:hover {
  transform: translateY(-2px);
}

.blog-teaser-tag {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--accent-contrast);
  font-family: var(--heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 5px 12px;
}

.blog-teaser-text {
  color: var(--text-h);
  font-weight: 600;
  flex: 1;
}

.blog-teaser-arrow {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- Blog (index + article pages) ---------- */

.blog-hub {
  max-width: 860px;
  padding: 3.5rem 24px 5rem;
  margin: 0 auto;
}

.blog-hub h1 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.blog-hub .section-lead {
  color: var(--text);
  margin-bottom: 2.5rem;
}

.blog-post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-post-card {
  display: block;
  display: flex;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.blog-post-card-thumb {
  flex-shrink: 0;
  width: 220px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  align-self: flex-start;
}

.blog-post-card-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-post-card h2 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.blog-post-card p {
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .blog-post-card {
    flex-direction: column;
  }

  .blog-post-card-thumb {
    width: 100%;
  }
}

/* Single article */

.blog-article {
  max-width: 720px;
  padding: 3.5rem 24px 5rem;
  margin: 0 auto;
}

.blog-article-back {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.blog-article h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 1.75rem;
}

.blog-article h2 {
  font-size: 1.25rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.blog-article p,
.blog-article li {
  margin-bottom: 0.95rem;
  line-height: 1.75;
}

.blog-article ul,
.blog-article ol {
  padding-left: 1.4rem;
  margin: 0 0 1rem;
}

.blog-article p a,
.blog-article li a {
  color: var(--accent);
  text-decoration: underline;
}

.blog-article figure {
  margin: 1.75rem 0;
}

.blog-article figure.browser-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-article figcaption {
  text-align: center;
  color: var(--text);
  font-size: 0.85rem;
  margin-top: 10px;
}

.blog-article .cta-band {
  border-radius: 16px;
  margin-top: 3rem;
  padding: 2.5rem 24px;
}
