:root {
  --primary: #1565c0;
  --primary-2: #2196f3;
  --accent: #00a878;
  --ink: #162033;
  --muted: #667085;
  --soft: #f5f8fc;
  --surface: #ffffff;
  --line: #e4eaf2;
  --warning: #f5a524;
  --shadow: 0 18px 45px rgba(21, 101, 192, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --page-x: clamp(14px, 4vw, 32px);
  --section-y: clamp(42px, 7vw, 76px);
  --text-size: clamp(16px, 1.25vw, 18px);
  --article-size: clamp(17px, 1.35vw, 19px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
}

body {
  font-family: Tahoma, Arial, sans-serif;
  background: var(--soft);
  color: var(--ink);
  line-height: 1.8;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.fas,
.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  min-width: 1.15em;
  height: 1.15em;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.fas::before,
.fab::before {
  display: block;
}

.fa-bars::before { content: "\2630"; }
.fa-xmark::before,
.fa-times::before { content: "\00d7"; }
.fa-google-play::before { content: "\25b6"; }
.fa-circle-info::before,
.fa-info-circle::before { content: "i"; }
.fa-file-pdf::before,
.fa-file-alt::before { content: "PDF"; font-size: 0.62em; }
.fa-video::before { content: "\25b6"; }
.fa-code::before { content: "</>"; font-size: 0.72em; }
.fa-universal-access::before { content: "\267F"; }
.fa-newspaper::before { content: "\25a4"; }
.fa-check-circle::before,
.fa-check-double::before { content: "\2713"; }
.fa-exclamation-circle::before,
.fa-circle-exclamation::before,
.fa-exclamation-triangle::before { content: "!"; }
.fa-envelope::before { content: "@"; }
.fa-whatsapp::before { content: "W"; }
.fa-facebook::before { content: "f"; }
.fa-google::before { content: "G"; }
.fa-google-drive::before { content: "D"; }
.fa-arrow-right::before { content: "\2192"; }
.fa-chevron-left::before { content: "\2039"; }
.fa-home::before,
.fa-house::before { content: "\2302"; }
.fa-calendar::before,
.fa-calendar-alt::before { content: "\25a6"; }
.fa-clock::before { content: "\25f7"; }
.fa-user::before,
.fa-user-circle::before,
.fa-user-graduate::before,
.fa-user-shield::before,
.fa-user-slash::before { content: "\25cf"; }
.fa-users::before { content: "\25cf\25cf"; font-size: 0.66em; }
.fa-link::before,
.fa-external-link-alt::before { content: "\2197"; }
.fa-upload::before,
.fa-cloud-upload-alt::before { content: "\2191"; }
.fa-paper-plane::before { content: "\27a4"; }
.fa-trash-alt::before { content: "\232b"; }
.fa-sync-alt::before { content: "\21bb"; }
.fa-circle-notch::before { content: "\25cc"; }
.fa-spin { animation: icon-spin 1s linear infinite; }

@keyframes icon-spin {
  to { transform: rotate(360deg); }
}

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

button,
input {
  font: inherit;
}

p,
li,
figcaption,
.section-subtitle {
  text-wrap: pretty;
}

.section-title,
.page-title,
.post-title,
.card-title {
  text-wrap: balance;
}

.container {
  width: min(1120px, calc(100% - (var(--page-x) * 2)));
  margin: 0 auto;
}

.article-layout.container {
  width: min(960px, calc(100% - 32px));
  max-width: 960px;
}

.section-pad {
  padding: var(--section-y) 0;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(228, 234, 242, 0.9);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.nav {
  min-height: clamp(62px, 7vw, 72px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--primary);
  margin-left: auto;
}

.brand img {
  width: clamp(38px, 5vw, 44px);
  height: clamp(38px, 5vw, 44px);
  border-radius: 11px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: #334155;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: #eaf5ff;
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--primary);
}

.hero {
  color: white;
  background: #0f5fa8;
  min-height: min(660px, calc(100svh - 72px));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 50, 104, 0.96), rgba(21, 101, 192, 0.92) 62%, rgba(0, 142, 112, 0.84));
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.8fr);
  gap: clamp(22px, 4vw, 38px);
  align-items: center;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
}

.hero .eyebrow {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 12px;
  border-radius: 999px;
}

h1,
h2,
h3 {
  line-height: 1.25;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(34px, 5vw, 56px);
  max-width: 700px;
  margin-bottom: 16px;
}

.hero p {
  max-width: 640px;
  font-size: clamp(16px, 1.35vw, 18px);
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.95;
  text-wrap: balance;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 28px rgba(21, 101, 192, 0.24);
}

.hero .btn-primary {
  background: white;
  color: var(--primary);
}

.btn-soft {
  color: white;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.btn-ghost {
  color: var(--primary);
  border-color: #cfe4ff;
  background: #f3f9ff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 390px);
}

.hero-stats span {
  color: white;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: clamp(12px, 1.25vw, 14px);
  text-align: center;
  white-space: nowrap;
}

.phone-showcase {
  position: relative;
  min-height: clamp(330px, 42vw, 470px);
}

.phone {
  position: absolute;
  width: clamp(165px, 20vw, 240px);
  aspect-ratio: 9 / 18.8;
  object-fit: cover;
  border: 8px solid #0f172a;
  border-radius: 30px;
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.28);
  background: #fff;
}

.phone-main {
  right: 52px;
  top: 6px;
  z-index: 2;
}

.phone-side {
  left: 24px;
  top: 86px;
  transform: scale(0.86);
  opacity: 0.92;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.split-section h2,
.section-heading h2,
.cta-panel h2,
.page-hero h1,
.article-header h1 {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 14px;
}

.split-section p,
.section-heading p,
.cta-panel p,
.page-hero p,
.article-header p {
  color: var(--muted);
  font-size: var(--text-size);
  text-wrap: pretty;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 16px;
}

.feature-card,
.post-card,
.article,
.side-card,
.download-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(21, 101, 192, 0.06);
}

.article {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  min-width: 0;
}

.feature-card {
  padding: 22px;
}

.feature-card i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eaf5ff;
  color: var(--primary);
  margin-bottom: 14px;
}

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

.feature-card p,
.post-card p {
  color: var(--muted);
  text-wrap: pretty;
}

.blog-band {
  background: white;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.text-link {
  color: var(--primary);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.more-row {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
}

.post-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card a {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.post-body {
  padding: 18px;
}

.post-body h2,
.post-body h3 {
  font-size: clamp(18px, 2vw, 21px);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.post-body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cta-panel {
  background: linear-gradient(135deg, #eaf5ff, #eefaf6);
  border: 1px solid #d9ecff;
  border-radius: 20px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.footer {
  background: #101828;
  color: white;
  padding: 38px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.footer-brand {
  color: white;
  margin: 0 0 10px;
}

.footer p {
  color: #cbd5e1;
  text-wrap: balance;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #e2e8f0;
}

.page-hero {
  background: linear-gradient(135deg, #eef7ff, #ffffff 55%, #eefaf6);
  padding: clamp(46px, 8vw, 74px) 0 clamp(30px, 5vw, 42px);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 820px;
}

.blog-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.search-input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  background: white;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  justify-content: center;
}

.article-header {
  background: linear-gradient(135deg, #1565c0, #2196f3 60%, #00a878);
  color: white;
  padding: clamp(48px, 8vw, 76px) 0;
}

.article-header .container {
  max-width: 960px;
}

.article-header p,
.article-meta {
  color: rgba(255, 255, 255, 0.9);
}

.article-header p {
  text-wrap: balance;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  font-size: 14px;
}

.article-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
}

.article-body img {
  display: block;
  width: auto;
  max-width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 430px;
  object-fit: cover;
  margin: 20px auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
}

.app-video {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #101828;
}

.video-frame iframe,
.youtube-lite {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-lite {
  cursor: pointer;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #0f5fa8, #083268 68%, #00a878);
}

.youtube-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 74px;
  height: 52px;
  border-radius: 16px;
  background: var(--primary);
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.youtube-play::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 0;
  border-left: 18px solid #fff;
  transform: translate(-38%, -50%);
}

.app-story {
  background: white;
}

.app-article {
  max-width: 900px;
  margin: 0 auto;
}

.app-article h2,
.app-article h3 {
  color: var(--primary);
  margin: 28px 0 12px;
}

.app-article p,
.app-article li {
  color: #263241;
  font-size: 17px;
  text-wrap: pretty;
}

.app-article ul,
.app-article ol {
  padding-right: 22px;
  margin-bottom: 18px;
}

.article-body {
  padding: clamp(18px, 3vw, 30px) 0 0;
  overflow-wrap: anywhere;
  width: 100%;
  min-width: 0;
}

.article-body > * {
  max-width: 100%;
}

.article-body > div:not(.media-scroll):not(.article-cta):not(:has(table)) {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.article-body h2 {
  color: var(--primary);
  font-size: clamp(23px, 3vw, 31px);
  margin: clamp(30px, 5vw, 42px) 0 14px;
  padding-right: 14px;
  border-right: 4px solid var(--primary);
  scroll-margin-top: 96px;
  text-wrap: balance;
}

.article-body h3 {
  font-size: clamp(20px, 2.4vw, 24px);
  margin: clamp(24px, 4vw, 32px) 0 10px;
  color: #1f3f66;
  scroll-margin-top: 96px;
  text-wrap: balance;
}

.article-body p,
.article-body li {
  color: #263241;
  font-size: var(--article-size);
  line-height: 1.95;
  text-wrap: pretty;
}

.article-body p {
  margin-bottom: 16px;
}

.article-body > p:first-of-type {
  font-size: clamp(18px, 1.7vw, 20px);
  color: #1f334d;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.article-body ul,
.article-body ol {
  padding-right: 24px;
  margin: 0 0 20px;
}

.article-body li + li {
  margin-top: 8px;
}

.article-body strong {
  color: var(--primary);
}

.article-body a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-body table {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 0;
  display: table;
  border: 0;
  border-radius: 0;
  background: white;
  box-shadow: none;
}

.article-body th,
.article-body td {
  border: 1px solid var(--line);
  padding: 13px 15px;
  min-width: 0;
  vertical-align: top;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.article-body th {
  background: #eaf5ff;
  color: var(--primary);
  font-weight: 800;
}

.article-body .table-scroll,
.article-body > div:has(table) {
  margin: 24px 0;
  overflow-x: visible;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.article-body > table {
  display: table;
  overflow-x: visible;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.article-body .table-scroll::before,
.article-body > div:has(table)::before {
  content: none;
  display: none;
}

.article-body pre {
  direction: ltr;
  text-align: left;
  overflow-x: auto;
  background: #101828;
  color: #f8fafc;
  border-radius: var(--radius-sm);
  padding: 18px;
  margin: 18px 0;
  line-height: 1.7;
  -webkit-overflow-scrolling: touch;
}

.article-body code {
  direction: ltr;
  unicode-bidi: embed;
  background: #eef2f7;
  color: #0f172a;
  border-radius: 6px;
  padding: 2px 6px;
}

.article-body pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

.article-body .content-note {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 22px 0;
}

.article-cta {
  margin-top: clamp(36px, 6vw, 56px);
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eff8ff, #f2fbf7);
  border: 1px solid #cfeaff;
  box-shadow: 0 16px 36px rgba(21, 101, 192, 0.1);
  display: grid;
  grid-template-columns: 72px minmax(280px, 1fr) max-content;
  gap: 18px;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.article-cta::before {
  content: none;
}

.article-cta-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  background: #fff;
  border: 1px solid #d6eaff;
  box-shadow: 0 12px 28px rgba(21, 101, 192, 0.15);
}

.article-cta h2 {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  color: var(--primary);
  font-size: clamp(24px, 3vw, 34px);
}

.article-cta p {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin: 0;
  background: transparent;
  border: 0;
  padding: 0;
  color: #344054;
  font-size: var(--text-size);
  text-wrap: balance;
  max-width: 58ch;
}

.article-cta .btn {
  grid-column: 3;
  grid-row: 1 / span 2;
  min-width: 190px;
  text-decoration: none;
  white-space: nowrap;
  align-self: center;
  justify-self: end;
  color: #fff !important;
  background: var(--primary);
  border-color: var(--primary);
}

.article-cta .btn i {
  color: inherit;
}

.sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 94px;
}

.side-card {
  padding: 20px;
}

.side-card h2 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary);
}

.side-card p,
.side-card a {
  color: var(--muted);
}

.side-card a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.side-card a:last-child {
  border-bottom: 0;
}

.download-hero {
  background: linear-gradient(135deg, #f3f9ff, #ffffff 55%, #f2fbf7);
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  gap: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.download-copy {
  display: grid;
  justify-items: center;
}

.download-copy h1 {
  max-width: 640px;
  margin-bottom: 12px;
  text-wrap: balance;
}

.download-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.8;
  margin-bottom: 22px;
  text-wrap: balance;
}

.download-copy .hero-actions {
  justify-content: center;
  margin: 0;
}

.download-copy .btn {
  min-width: 230px;
}

.download-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.download-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.download-icon {
  width: 82px;
  height: 82px;
  border-radius: 18px;
  margin: 0 auto 18px;
  box-shadow: 0 12px 30px rgba(21, 101, 192, 0.18);
}

.download-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 12px;
  margin-top: 22px;
}

.download-point {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.download-point i {
  color: var(--primary);
  margin-bottom: 8px;
}

.download-point h3 {
  font-size: 18px;
  margin-bottom: 6px;
  text-wrap: balance;
}

.download-point p {
  color: var(--muted);
  font-size: 15px;
  text-wrap: pretty;
}

.store-button {
  width: 100%;
  justify-content: center;
  margin: 18px 0;
}

.screen-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.screen-strip img {
  width: 100%;
  aspect-ratio: 9 / 18;
  object-fit: cover;
  border-radius: 18px;
  border: 8px solid #101828;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.18);
  scroll-snap-align: start;
}

.media-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 48%);
  gap: 14px;
  overflow-x: auto;
  margin: 24px 0;
  padding: 4px 2px 12px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.media-scroll > div,
.media-scroll > figure {
  min-width: 0;
  scroll-snap-align: start;
}

.media-scroll img,
.article-body .media-scroll img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  margin: 0;
}

.article-body > div:has(> img:only-child) {
  margin: 22px 0;
}

.article-body > div:has(> img:only-child) img {
  width: auto;
  max-width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  max-height: 430px;
  object-fit: cover;
}

.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 940px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split-section,
  .download-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .phone-showcase {
    min-height: 470px;
  }

  .phone-main {
    right: 18%;
  }

  .phone-side {
    left: 14%;
  }

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

  .article-cta {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .article-cta-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .article-cta h2,
  .article-cta p {
    grid-column: 2;
  }

  .article-cta .btn {
    grid-row: 3;
    grid-column: 2;
    justify-self: start;
    width: fit-content;
  }

}

@media (max-width: 720px) {
  :root {
    --page-x: 14px;
    --section-y: 38px;
  }

  .container {
    width: min(100% - (var(--page-x) * 2), 1120px);
  }

  .section-pad {
    padding: var(--section-y) 0;
  }

  .nav {
    min-height: 64px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    right: 12px;
    left: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .nav-links.is-open {
    display: grid;
  }

  .hero {
    padding-top: 38px;
    text-align: right;
  }

  h1 {
    font-size: clamp(30px, 8.5vw, 36px);
  }

  .hero p,
  .split-section p,
  .section-heading p,
  .cta-panel p,
  .page-hero p,
  .article-header p {
    font-size: 16px;
  }

  .hero-stats {
    width: 100%;
    gap: 6px;
  }

  .hero-stats span {
    padding: 7px 6px;
    font-size: clamp(11px, 3.2vw, 13px);
  }

  .phone-showcase {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .phone {
    position: static;
    width: 100%;
    max-height: 430px;
    border-width: 8px;
    border-radius: 28px;
  }

  .phone-main {
    right: auto;
  }

  .phone-side {
    left: auto;
    top: auto;
    transform: none;
  }

  .feature-grid,
  .post-grid,
  .blog-tools,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .post-grid {
    gap: 14px;
  }

  .post-body {
    padding: 16px;
  }

  .post-body h2,
  .post-body h3 {
    font-size: 19px;
  }

  .page-hero {
    padding: 48px 0 30px;
  }

  .article-header {
    padding: 48px 0 38px;
  }

  .article-meta {
    gap: 8px;
  }

  .article-meta span {
    width: 100%;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .article-layout.container,
  .container {
    width: min(100% - (var(--page-x) * 2), 1120px);
  }

  .article-layout.container {
    width: min(100% - 18px, 960px);
  }

  .article {
    border-radius: 0;
  }

  .article-cover {
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: none;
  }

  .article-body {
    padding: 16px 0 0;
  }

  .article-body h2 {
    font-size: clamp(22px, 6.2vw, 25px);
    margin-top: 30px;
    padding-right: 10px;
  }

  .article-body h3 {
    font-size: 20px;
  }

  .article-body p,
  .article-body li {
    font-size: 17px;
    line-height: 1.9;
  }

  .article-body th,
  .article-body td {
    padding: 12px;
    font-size: 15px;
  }

  .article-body table {
    min-width: 0;
    table-layout: auto;
  }

  .article-body table,
  .article-body thead,
  .article-body tbody,
  .article-body tr,
  .article-body th,
  .article-body td {
    display: block;
    width: 100%;
  }

  .article-body thead {
    display: none;
  }

  .article-body tr {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 12px 0;
    background: white;
  }

  .article-body td,
  .article-body th {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .article-body td:last-child,
  .article-body th:last-child {
    border-bottom: 0;
  }

  .article-body td:first-child,
  .article-body th:first-child {
    background: #eaf5ff;
    color: var(--primary);
    font-weight: 800;
  }

  .article-body pre {
    margin-inline: -6px;
    border-radius: 10px;
    font-size: 14px;
  }

  .media-scroll {
    grid-auto-columns: minmax(230px, 82%);
    margin-inline: -4px;
  }

  .screen-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 72%);
    grid-template-columns: none;
  }

  .screen-strip img {
    border-width: 7px;
  }

  .download-points {
    grid-template-columns: 1fr;
  }

  .download-copy .btn {
    width: min(100%, 280px);
  }

  .article-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .article-cta-icon {
    grid-column: auto;
    grid-row: auto;
    margin: 0 auto;
  }

  .article-cta h2,
  .article-cta p {
    grid-column: auto;
    grid-row: auto;
  }

  .article-cta .btn {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero-actions .btn {
    width: 100%;
  }

  .phone-showcase {
    min-height: auto;
  }

  .phone {
    width: 100%;
  }

  .phone-main {
    right: 8%;
  }

  .phone-side {
    left: 4%;
  }
}


