:root {
  color-scheme: light;
  --bg: #eef5f5;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-dark: #14333d;
  --line: rgba(34, 66, 76, 0.14);
  --line-bright: rgba(255, 255, 255, 0.68);
  --text: #14272f;
  --muted: #58717a;
  --accent: #21c4c2;
  --accent-soft: #9df2e8;
  --accent-dark: #0d6f79;
  --gold: #d4a91f;
  --shadow: 0 24px 70px rgba(26, 56, 66, 0.16);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-bottom: 112px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(223, 238, 238, 0.82)),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(20, 39, 47, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 39, 47, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.54), transparent 78%);
}

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

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(calc(100% - 28px), var(--max));
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 50px rgba(32, 68, 78, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero__actions,
.trust-list,
.topic-list,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-dark);
  color: #e9ffff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.nav-links {
  gap: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a,
.header-cta,
.button,
.topic-list a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.nav-links a {
  padding: 0 12px;
}

.nav-links a:hover,
.topic-list a:hover {
  background: rgba(33, 196, 194, 0.1);
  color: var(--accent-dark);
}

.header-cta {
  padding: 0 18px;
  background: var(--surface-dark);
  color: #f3ffff;
  font-weight: 800;
}

.section-pad {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 88px 0;
}

.section-band {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.42);
  border-block: 1px solid rgba(255, 255, 255, 0.7);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1fr);
  align-items: center;
  gap: 48px;
  padding-top: 80px;
}

.eyebrow,
.product-card__kicker,
.demo-preview__kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.4vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.72rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  line-height: 1.2;
}

p,
li {
  color: var(--muted);
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(1.06rem, 2vw, 1.3rem);
}

.hero__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  min-width: 150px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.envoy-launcher:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, #23d2cf, var(--accent-soft));
  color: #062d35;
  box-shadow: 0 14px 32px rgba(33, 196, 194, 0.22);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.66);
  border-color: var(--line-bright);
  color: var(--text);
}

.proof-line {
  max-width: 590px;
  color: #38545d;
  font-weight: 800;
}

.hero__visual {
  position: relative;
}

.hero__image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.status-dot {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(33, 196, 194, 0.16);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading--wide {
  max-width: 960px;
}

.problem-grid,
.product-grid,
.use-case-grid {
  display: grid;
  gap: 16px;
}

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

.problem-grid article,
.product-card,
.use-case-grid article,
.faq-list details,
.demo-story,
.demo-preview {
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 46px rgba(31, 64, 72, 0.08);
}

.problem-grid article,
.product-card,
.use-case-grid article {
  padding: 24px;
}

.split,
.resources,
.proof,
.final-cta,
.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  align-items: start;
  gap: 40px;
}

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

.step-list li {
  counter-increment: steps;
  position: relative;
  padding: 18px 18px 18px 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
}

.step-list li::before {
  content: counter(steps);
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-dark);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
}

.envoy-demo {
  padding-top: 44px;
}

.demo-story {
  padding: 28px;
}

.demo-story ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding-left: 20px;
}

.demo-preview,
.envoy-inline {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.demo-preview img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.demo-preview__panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 24px;
  background: rgba(20, 39, 47, 0.84);
  backdrop-filter: blur(14px);
}

.demo-preview__panel h3,
.demo-preview__panel p {
  color: white;
}

.demo-preview__panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.envoy-inline {
  position: relative;
  display: grid;
  min-height: 820px;
  border: 1px solid var(--line-bright);
  border-radius: 28px;
  background: #10252d;
  box-shadow: 0 24px 70px rgba(31, 64, 72, 0.13);
}

.envoy-inline-expanded {
  overflow: hidden;
}

.envoy-inline--fullscreen {
  position: fixed;
  inset: 14px;
  z-index: 90;
  width: auto;
  min-height: 0;
  border-radius: 30px;
  box-shadow: 0 34px 110px rgba(4, 19, 27, 0.42);
}

.envoy-inline--fullscreen::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(10, 28, 36, 0.62);
  backdrop-filter: blur(12px);
}

.envoy-inline__button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #062d35;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-4px);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(8, 30, 38, 0.2);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.envoy-inline--fullscreen .envoy-inline__button,
.envoy-inline:hover .envoy-inline__button,
.envoy-inline__button:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.envoy-inline--fullscreen .envoy-inline__button {
  background: rgba(255, 255, 255, 0.9);
}

.envoy-inline__button:hover {
  background: linear-gradient(135deg, #23d2cf, var(--accent-soft));
}

.envoy-inline:not(.envoy-inline--started) .envoy-inline__button {
  display: none;
}

.envoy-inline__start {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(8, 27, 34, 0.38), rgba(8, 27, 34, 0.5)),
    url("https://img1.wsimg.com/isteam/ip/98c9ef6a-844b-4c85-bcd5-c453c22c4bce/pexels-katianaidenko-7512139.jpg") center / cover;
}

.envoy-inline--started .envoy-inline__start {
  display: none;
}

.envoy-inline__start-panel {
  width: min(480px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  background: rgba(16, 37, 45, 0.76);
  color: white;
  text-align: center;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(4, 19, 27, 0.28);
}

.envoy-inline__start-panel p {
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.envoy-inline__start-panel h3 {
  margin-bottom: 20px;
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.envoy-inline__start-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: linear-gradient(135deg, #23d2cf, var(--accent-soft));
  color: #062d35;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(33, 196, 194, 0.24);
}

@media (hover: none) {
  .envoy-inline__button {
    opacity: 1;
    transform: none;
  }
}

.envoy-inline__frame {
  width: 100%;
  height: 100%;
  min-height: 820px;
  border: 0;
  background: #10252d;
  overflow: auto;
}

.envoy-inline--fullscreen .envoy-inline__frame {
  min-height: 0;
  height: 100%;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  min-height: 280px;
}

.use-case-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.quote-block {
  padding: 28px;
  border-radius: 30px;
  background: var(--surface-dark);
  color: white;
  box-shadow: var(--shadow);
}

.quote-block p {
  color: rgba(255, 255, 255, 0.82);
}

.quote-mark {
  margin-bottom: 18px;
  color: white !important;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
  font-weight: 900;
}

.proof-details {
  align-self: center;
}

.trust-list,
.topic-list {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-list span,
.topic-list a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.trust-list span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: #37535c;
  font-weight: 800;
}

.topic-list a {
  padding: 0 15px;
  color: #37535c;
  font-weight: 900;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-cta {
  align-items: center;
  padding-bottom: 64px;
}

.envoy-launcher {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 30;
  width: min(430px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 18%, rgba(157, 242, 232, 0.2), transparent 34%),
    linear-gradient(135deg, #0f376f, #123a78 54%, #0e3040);
  color: white;
  box-shadow: 0 24px 70px rgba(15, 55, 111, 0.32);
  transition: transform 180ms ease;
}

.envoy-launcher__copy {
  display: grid;
  gap: 4px;
}

.envoy-launcher__copy span {
  color: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.envoy-launcher__copy strong {
  color: white;
  font-size: 1rem;
  line-height: 1.2;
}

.envoy-launcher__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.envoy-launcher__button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  padding: 0 14px;
  border: 1px solid rgba(212, 169, 31, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.envoy-launcher__button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.envoy-launcher__button--voice {
  background: linear-gradient(135deg, #9df2e8, #21c4c2);
  border-color: rgba(255, 255, 255, 0.38);
  color: #062d35;
}

.envoy-launcher__button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.envoy-widget[hidden] {
  display: none;
}

.envoy-widget {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  padding: 16px;
}

.envoy-widget-open {
  overflow: hidden;
}

.envoy-widget__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 28, 36, 0.38);
  cursor: pointer;
}

.envoy-widget__panel {
  position: relative;
  width: min(520px, calc(100vw - 32px));
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  background: #10252d;
  box-shadow: 0 34px 100px rgba(4, 19, 27, 0.34);
}

.envoy-widget__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(4, 19, 27, 0.18);
}

.envoy-widget__close span,
.envoy-widget__close span::before {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--text);
  transform: rotate(45deg);
}

.envoy-widget__close span::before {
  content: "";
  transform: rotate(90deg);
}

.envoy-widget__frame-wrap {
  min-height: 0;
  padding: 0;
}

.envoy-widget__frame {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 28px;
  background: #10252d;
}

.site-footer {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 28px 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.site-footer nav {
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.content-page {
  padding-bottom: 112px;
}

.content-hero {
  padding-bottom: 36px;
}

.content-hero h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.content-hero p {
  max-width: 760px;
  font-size: 1.12rem;
}

.blog-grid {
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 46px rgba(31, 64, 72, 0.08);
}

.blog-card a {
  display: grid;
  height: 100%;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: rgba(20, 39, 47, 0.08);
}

.blog-card div {
  padding: 22px;
}

.blog-card__date {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.18;
}

.blog-card p:last-child {
  margin-bottom: 0;
}

.article-page {
  width: min(calc(100% - 36px), 920px);
  margin: 0 auto;
  padding: 88px 0;
}

.article-shell {
  border: 1px solid var(--line-bright);
  border-radius: 30px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 58px);
}

.article-shell > h1 {
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1;
}

.article-meta {
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-weight: 900;
}

.article-hero__image,
.article-content figure img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(31, 64, 72, 0.12);
}

.article-hero__image {
  margin-bottom: 34px;
  max-height: 520px;
  object-fit: cover;
}

.article-content {
  font-size: 1.06rem;
}

.article-content h1,
.article-content h2,
.article-content h3 {
  margin-top: 42px;
}

.article-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.article-content h3 {
  font-size: 1.35rem;
}

.article-content p,
.article-content li {
  color: #3f5962;
}

.article-content a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-content figure {
  margin: 34px 0;
}

.article-content hr {
  width: 100%;
  height: 1px;
  margin: 38px 0;
  border: 0;
  background: var(--line);
}

.video-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #10252d;
  box-shadow: 0 18px 46px rgba(31, 64, 72, 0.12);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.article-cta {
  margin-top: 48px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(238, 245, 245, 0.78);
}

.article-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

@media (max-width: 1180px) {
  .product-grid,
  .use-case-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1050px) {
  .hero,
  .split,
  .resources,
  .proof,
  .final-cta,
  .demo-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  body {
    padding-bottom: 148px;
  }

  .site-header {
    position: static;
    border-radius: 24px;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow: auto;
    gap: 2px;
    font-size: 0.84rem;
  }

  .nav-links a {
    padding: 0 8px;
    white-space: nowrap;
  }

  .header-cta {
    min-width: 118px;
  }

  .section-pad {
    width: min(calc(100% - 28px), var(--max));
    padding: 64px 0;
  }

  .section-band {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.9rem);
  }

  .problem-grid,
  .product-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .hero__image {
    height: 340px;
    border-radius: 24px;
  }

  .demo-preview,
  .demo-preview img {
    min-height: auto;
    height: 420px;
  }

  .envoy-inline {
    min-height: 760px;
  }

  .envoy-inline__button {
    top: 12px;
    right: 12px;
    opacity: 1;
    transform: none;
  }

  .envoy-inline__frame {
    min-height: 760px;
  }

  .demo-preview__panel {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .envoy-launcher {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .envoy-launcher__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .envoy-launcher__button {
    width: 100%;
  }

  .envoy-widget {
    align-items: stretch;
    padding: 10px;
  }

  .envoy-widget__panel {
    width: 100%;
    height: 100%;
    border-radius: 24px;
  }

  .envoy-widget__frame-wrap {
    padding: 0;
  }

  .envoy-widget__frame {
    border-radius: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .article-page {
    width: min(calc(100% - 28px), 920px);
    padding: 64px 0;
  }

  .article-shell {
    border-radius: 24px;
  }
}
