:root {
  --ink: #08100e;
  --muted: #5d6964;
  --line: #dbe5df;
  --paper: #fbfdfb;
  --soft: #eef6f1;
  --emerald: #08a66d;
  --emerald-dark: #05734f;
  --cyan: #24b8c8;
  --amber: #e2a327;
  --charcoal: #0b1110;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 16, 14, 0.15);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 10, 9, 0.74), rgba(5, 10, 9, 0));
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--white) 0 13%, transparent 14%),
    conic-gradient(from 45deg, var(--emerald), var(--cyan), var(--emerald));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.site-header nav {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.site-header.static-header {
  position: sticky;
  background: rgba(7, 17, 15, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: var(--white);
}

.hero {
  min-height: 94vh;
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 94vh;
  width: min(49vw, 760px);
  max-width: 760px;
  padding: 128px 0 70px clamp(22px, 5.6vw, 84px);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 64%;
  z-index: 1;
  background: linear-gradient(90deg, var(--charcoal) 0%, rgba(11, 17, 16, 0.94) 54%, rgba(11, 17, 16, 0) 100%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.signal {
  margin: 0 0 18px;
  font: 700 12px/1 JetBrains Mono, monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--emerald);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-text {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  box-shadow: 0 18px 42px rgba(8, 166, 109, 0.35);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.button.full {
  width: 100%;
  border: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.hero-stats dt {
  margin-bottom: 7px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.4;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 4vw, 62px);
  row-gap: 14px;
  padding: 24px clamp(20px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font: 700 12px/1 JetBrains Mono, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: normal;
  overflow-x: visible;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

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

.section-heading.compact {
  margin-bottom: 28px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.signal),
.split-copy > p:not(.signal),
.product-demo .section-heading p,
.proof-copy p:not(.signal),
.purchase-copy > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.product-demo {
  background: linear-gradient(180deg, var(--paper), var(--white));
}

.demo-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.demo-screen {
  min-height: 520px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 166, 109, 0.22), rgba(36, 184, 200, 0.12)),
    var(--charcoal);
  box-shadow: var(--shadow);
}

.screen-top,
.screen-metrics,
.session-list div,
.demo-actions {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.screen-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.66);
}

.screen-top strong {
  color: #9be7c7;
}

.screen-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
  padding: 16px;
  border-radius: var(--radius);
}

.screen-metrics span,
.session-list span + p,
.checkout-assurance span {
  color: rgba(255, 255, 255, 0.66);
}

.screen-metrics span {
  display: block;
  margin-bottom: 8px;
  font: 700 11px/1 JetBrains Mono, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.screen-metrics strong {
  font-size: 18px;
  line-height: 1.25;
}

.session-list {
  display: grid;
  gap: 12px;
}

.session-list div {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
}

.session-list p {
  margin: 0;
  line-height: 1.5;
}

.session-list strong {
  display: block;
  color: var(--white);
}

.status-dot {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--emerald);
}

.status-dot.promote {
  background: var(--cyan);
}

.status-dot.live {
  background: var(--amber);
}

.demo-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
}

.demo-actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.demo-panel {
  display: grid;
  gap: 14px;
}

.demo-panel article,
.proof-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(8, 16, 14, 0.06);
}

.demo-panel p,
.proof-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.benefit-grid article,
.safety-grid div,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(8, 16, 14, 0.06);
}

.benefit-grid article {
  min-height: 230px;
  padding: 28px;
}

.icon {
  display: inline-flex;
  margin-bottom: 34px;
  font: 700 13px/1 JetBrains Mono, monospace;
  color: var(--emerald);
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.benefit-grid p,
.safety-grid p,
.timeline p,
.product-feature-grid p,
.product-proof-grid p,
.product-cta p,
.price-note,
.fine-print,
.included {
  color: var(--muted);
  line-height: 1.58;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--soft);
}

.proof-copy {
  max-width: 460px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.workflow-section {
  grid-template-columns: minmax(0, 960px);
  justify-content: center;
}

.split-copy {
  max-width: 560px;
}

.workflow-section .split-copy {
  max-width: none;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

.timeline div {
  position: relative;
  padding: 0 0 18px 24px;
  border-left: 2px solid var(--line);
}

.workflow-section .timeline div {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(8, 16, 14, 0.06);
}

.timeline div::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--emerald);
}

.workflow-section .timeline div::before {
  position: static;
  display: block;
  margin-bottom: 24px;
}

.timeline strong {
  font-size: 18px;
}

.safety {
  background: var(--charcoal);
  color: var(--white);
}

.safety .section-heading p:not(.signal) {
  color: rgba(255, 255, 255, 0.68);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto;
}

.safety-grid div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.safety-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.home-faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto;
}

.faq-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.purchase-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 440px);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.purchase-copy {
  max-width: 650px;
}

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

.included li {
  position: relative;
  padding-left: 28px;
}

.included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--white) 0 22%, var(--emerald) 24% 100%);
}

.price-card {
  padding: 28px;
  box-shadow: var(--shadow);
}

.price-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.price-top strong {
  color: var(--ink);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 32px 0 12px;
}

.was {
  color: #8b9691;
  font-size: 30px;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

.now {
  color: var(--ink);
  font-size: clamp(64px, 8vw, 90px);
  line-height: 0.9;
  font-weight: 800;
}

.checkout {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.checkout label {
  font-weight: 800;
  font-size: 13px;
}

.checkout input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}

.fine-print {
  margin: 16px 0 0;
  font-size: 13px;
}

.checkout-assurance {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkout-assurance div {
  display: grid;
  gap: 5px;
}

.checkout-assurance strong {
  font-size: 13px;
}

.checkout-assurance span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.status-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.status-card h2 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.status-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--emerald-dark);
  font: 800 12px/1 JetBrains Mono, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.status-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.status-list dt {
  color: var(--muted);
  font-weight: 800;
}

.status-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.status-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 24px auto 0;
}

.status-actions .button.secondary {
  color: var(--emerald-dark);
  border-color: rgba(8, 166, 109, 0.35);
  background: var(--white);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--emerald-dark);
}

.blog-index,
.blog-article {
  background: var(--paper);
}

.blog-hero {
  padding: 128px clamp(20px, 5vw, 72px) 62px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 17, 15, 0.98), rgba(7, 17, 15, 0.78)),
    image-set(
        url("/assets/botfolio-hero-cartoon-rocket.webp") type("image/webp"),
        url("/assets/botfolio-hero-cartoon-rocket.png") type("image/png")
      )
      center right / cover;
}

.blog-hero h1,
.blog-article h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.blog-hero p:not(.signal) {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  line-height: 1.58;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(34px, 5vw, 72px);
}

.blog-grid article {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(8, 16, 14, 0.06);
}

.blog-grid article > p {
  margin-bottom: 28px;
  font: 700 11px/1 JetBrains Mono, monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--emerald);
}

.blog-grid h2 {
  font-size: 28px;
  line-height: 1.05;
}

.blog-grid span {
  display: block;
  color: var(--muted);
  line-height: 1.56;
}

.blog-article article {
  max-width: 880px;
  margin: 0 auto;
  padding: 112px 20px 86px;
}

.blog-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--emerald-dark);
  font-weight: 800;
}

.blog-article h1 {
  color: var(--ink);
}

.blog-dek {
  font-size: 22px;
  line-height: 1.56;
  color: var(--muted);
}

.blog-meta {
  margin: 26px 0 38px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font: 700 12px/1.5 JetBrains Mono, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-article section {
  margin-top: 38px;
}

.blog-article h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 42px);
}

.blog-article p,
.blog-article li {
  color: #3f4c47;
  font-size: 18px;
  line-height: 1.72;
}

.blog-article ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.blog-callout {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
}

.blog-callout h2,
.blog-callout p {
  color: var(--white);
}

.blog-callout p {
  color: rgba(255, 255, 255, 0.72);
}

.source-list a {
  color: var(--emerald-dark);
  font-weight: 800;
}

.blog-faq .faq-item {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.blog-faq .faq-item:first-of-type {
  border-top: none;
}

.blog-article .blog-faq h3 {
  margin-bottom: 8px;
  font-size: 21px;
  color: var(--ink);
}

.blog-related {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist, #f4f7f5);
}

.blog-related a {
  color: var(--emerald-dark);
  font-weight: 700;
}

.product-page article {
  max-width: 1080px;
}

.product-proof-grid,
.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.product-proof-grid div,
.product-feature-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(8, 16, 14, 0.06);
}

.product-proof-grid span {
  display: block;
  margin-bottom: 10px;
  font: 700 11px/1 JetBrains Mono, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald);
}

.product-proof-grid strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.product-feature-grid article {
  margin: 0;
}

.product-feature-grid h3 {
  font-size: 21px;
}

.product-cta {
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 166, 109, 0.24), rgba(226, 163, 39, 0.12)),
    var(--charcoal);
}

.product-cta h2 {
  color: var(--white);
}

.product-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.blog-disclaimer {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14px !important;
  color: var(--muted) !important;
}

.is-visible {
  animation: rise 0.55s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .site-header {
    position: absolute;
  }

  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: auto;
    min-height: 0;
    padding: 110px 22px 34px;
  }

  .hero-media {
    position: relative;
    inset: auto;
    z-index: auto;
    min-height: 390px;
    order: -1;
    margin-bottom: -92px;
    opacity: 0.92;
  }

  .hero-media::before {
    inset: auto 0 0;
    width: 100%;
    height: 56%;
    background: linear-gradient(0deg, var(--charcoal), rgba(11, 17, 16, 0));
  }

  .hero-stats,
  .demo-shell,
  .screen-metrics,
  .benefit-grid,
  .split,
  .workflow-section .timeline,
  .safety-grid,
  .proof-section,
  .proof-grid,
  .faq-grid,
  .purchase-section,
  .blog-grid,
  .product-proof-grid,
  .product-feature-grid {
    grid-template-columns: 1fr;
  }

  .demo-screen {
    min-height: 0;
  }

  .trust-strip {
    justify-content: start;
    flex-wrap: wrap;
    white-space: normal;
    overflow-x: visible;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 16px;
  }

  .brand {
    font-size: 16px;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-actions,
  .status-actions,
  footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .benefit-grid article,
  .safety-grid div,
  .price-card {
    padding: 22px;
  }

  .blog-article article {
    padding-top: 72px;
  }

  .price {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .status-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
