:root {
  --bg: #edf4ff;
  --ink: #111827;
  --text: #596273;
  --muted: #818999;
  --blue: #2582ef;
  --cyan: #7fe9e3;
  --pink: #e477d3;
  --glass: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.82);
  --shadow: 0 22px 55px rgba(70, 98, 148, 0.16);
  --radius: 24px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body.sr-site {
  overflow-x: hidden;
  margin: 0;
  background: linear-gradient(135deg, #f4f7fd, #e9f2ff 62%, #f6effb);
  color: var(--ink);
  font:
    16px/1.75 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Microsoft YaHei",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.sr-container {
  width: min(var(--container), calc(100% - 48px));
  margin: auto;
}
.sr-header {
  position: absolute;
  z-index: 30;
  top: 12px;
  left: 0;
  width: 100%;
}
.sr-notice,
.sr-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.sr-notice {
  height: 56px;
  padding: 0 20px;
  border-radius: 28px;
}
.sr-notice p {
  margin: 0;
  color: #707785;
  font-size: 13px;
}
.sr-notice p b {
  color: #4b515c;
}
.sr-notice > div {
  display: flex;
  gap: 10px;
}
.sr-notice a {
  padding: 7px 15px;
  border: 1px solid #fff;
  border-radius: 20px;
  background: #ffffff8c;
  font-size: 12px;
  font-weight: 700;
}
.sr-nav {
  height: 68px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 34px;
}
.sr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a505d;
  font-size: 16px;
  font-weight: 800;
}
.sr-logo-icon {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: inset 0 1px #fff;
}
.sr-logo-icon i {
  display: none;
}
.sr-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #626b7a;
  font-size: 13px;
  font-weight: 700;
}
.sr-menu a:hover {
  color: #236cd5;
}
.sr-toggle {
  display: none;
  border: 0;
  background: none;
}
.sr-toggle i {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px;
  background: #344054;
}
.sr-hero {
  position: relative;
  overflow: hidden;
  min-height: 1540px;
  padding-top: 150px;
  background:
    radial-gradient(
      circle at 76% 23%,
      rgba(98, 166, 255, 0.34),
      transparent 30%
    ),
    radial-gradient(
      circle at 48% 58%,
      rgba(113, 238, 220, 0.24),
      transparent 23%
    ),
    radial-gradient(
      circle at 20% 82%,
      rgba(234, 125, 213, 0.15),
      transparent 18%
    ),
    linear-gradient(135deg, #f4f7fd, #eaf3ff 68%, #f5effb);
}
.sr-hero:before {
  position: absolute;
  top: 170px;
  right: 7%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, #b9d7ff66, transparent 67%);
  filter: blur(20px);
  content: "";
}
.sr-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.sr-glow.one {
  width: 350px;
  height: 350px;
  top: 580px;
  left: 38%;
  background: #77eee04d;
}
.sr-glow.two {
  width: 300px;
  height: 300px;
  right: -120px;
  top: 230px;
  background: #82baff40;
}
.sr-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  min-height: 1150px;
  gap: 55px;
}
.sr-version {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  border: 1px solid #fff;
  border-radius: 25px;
  background: #ffffff9c;
  box-shadow: 0 10px 30px #627fae16;
  color: #747c8a;
  font-size: 12px;
  font-weight: 700;
}
.sr-version i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #73e9c8;
  box-shadow: 0 0 0 7px #73e9c820;
}
.sr-hero h1 {
  margin: 26px 0 20px;
  color: #101827;
  font-size: 68px;
  line-height: 1.03;
  letter-spacing: -3px;
}
.sr-hero h1 strong {
  background: linear-gradient(
    90deg,
    #12396f,
    #2877e6 40%,
    #797eea 72%,
    #e279ce
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sr-hero-copy > p {
  max-width: 630px;
  margin: 0;
  color: #606979;
  font-size: 18px;
  line-height: 1.9;
}
.sr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}
.sr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 1px solid #fff;
  border-radius: 25px;
  background: linear-gradient(110deg, #57a9fa, #82e7df);
  box-shadow: 0 12px 28px #5a9bd32c;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s;
}
.sr-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 32px #5a9bd344;
}
.sr-button-white {
  background: #ffffffb5;
  box-shadow: none;
  color: #111827;
}
.sr-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.sr-hero-stats div {
  padding: 16px 18px;
  border: 1px solid #fff;
  border-radius: 18px;
  background: #ffffff91;
  box-shadow: 0 12px 30px #607fa914;
}
.sr-hero-stats b,
.sr-hero-stats span {
  display: block;
}
.sr-hero-stats b {
  color: #454c58;
  font-size: 20px;
}
.sr-hero-stats span {
  color: #858c99;
  font-size: 11px;
}
.sr-showcase {
  position: relative;
  min-height: 680px;
}
.sr-phone {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  right: 30px;
  top: 90px;
  width: 300px;
  height: 600px;
  border: 10px solid rgba(255, 255, 255, 0.85);
  border-radius: 39px;
  background: #6472e8;
  box-shadow: 0 35px 65px rgba(45, 55, 102, 0.28);
  transform: rotate(-2deg);
}
.sr-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sr-phone-back {
  z-index: 1;
  right: -35px;
  top: 170px;
  transform: rotate(9deg);
  opacity: 0.72;
}
.sr-glass-label {
  position: absolute;
  z-index: 4;
  right: 110px;
  bottom: 20px;
  width: 320px;
  padding: 18px;
  border: 1px solid #fff;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.53);
  box-shadow: var(--shadow);
  backdrop-filter: blur(17px);
}
.sr-glass-label b {
  display: block;
  color: #4f5662;
  font-size: 17px;
}
.sr-glass-label span {
  display: block;
  width: 100%;
  height: 9px;
  margin-top: 10px;
  border-radius: 9px;
  background: linear-gradient(90deg, #55a8f7, #79e8df);
}
.sr-glass-label span:nth-child(3) {
  width: 76%;
  background: linear-gradient(90deg, #f09ad8, #5d8ff2);
}
.sr-glass-label span:nth-child(4) {
  width: 58%;
  background: linear-gradient(90deg, #69e2c3, #ffffffaa);
}
.sr-section {
  padding: 105px 0;
  background: #f7f9fd;
  color: var(--ink);
}
.sr-section-head {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}
.sr-section-head > span,
.sr-title-row span,
.sr-screen-copy > span,
.sr-faq-grid > div:first-child > span,
.sr-page-hero span {
  color: #5887db;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
}
.sr-section-head h2,
.sr-title-row h2,
.sr-screen-copy h2,
.sr-faq-grid h2 {
  margin: 10px 0;
  color: #1b2433;
  font-size: 38px;
  line-height: 1.35;
}
.sr-section-head p {
  margin: 0;
  color: var(--muted);
}
.sr-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sr-feature-grid article {
  position: relative;
  padding: 34px;
  border: 1px solid #fff;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 45px rgba(59, 81, 117, 0.1);
  backdrop-filter: blur(15px);
  transition: 0.25s;
}
.sr-feature-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.sr-feature-grid em {
  position: absolute;
  right: 24px;
  top: 17px;
  color: #dce7f8;
  font-size: 52px;
  font-weight: 800;
  font-style: normal;
}
.sr-feature-grid i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 15px;
  background: linear-gradient(145deg, #eef5ff, #e8fcfa);
  color: #4187dc;
  font-size: 23px;
  font-style: normal;
}
.sr-feature-grid h3 {
  margin: 20px 0 8px;
  font-size: 19px;
}
.sr-feature-grid p {
  margin: 0;
  color: #727c8d;
  font-size: 14px;
}
.sr-screens {
  background: linear-gradient(135deg, #eff5fe, #f9f4fc);
}
.sr-screens-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 85px;
}
.sr-screen-copy h2 {
  font-size: 42px;
}
.sr-screen-copy > p {
  color: #6f798a;
}
.sr-screen-copy ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.sr-screen-copy li {
  display: flex;
  gap: 14px;
  margin: 18px 0;
}
.sr-screen-copy li > i {
  display: grid;
  flex: 0 0 31px;
  height: 31px;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 10px;
  background: #ffffffa8;
  color: #3984dc;
  font-style: normal;
}
.sr-screen-copy li span,
.sr-screen-copy li b {
  display: block;
}
.sr-screen-stack {
  position: relative;
  min-height: 570px;
}
.sr-screen-stack:before {
  position: absolute;
  width: 520px;
  height: 520px;
  top: 20px;
  left: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, #c5dcff, #eef4fc 67%);
  content: "";
  transform: translateX(-50%);
}
.sr-screen-stack figure {
  position: absolute;
  overflow: hidden;
  width: 245px;
  height: 500px;
  margin: 0;
  border: 8px solid #ffffffd9;
  border-radius: 35px;
  box-shadow: 0 30px 60px #455c883c;
}
.sr-screen-stack figure:first-child {
  z-index: 2;
  left: 18%;
  top: 15px;
  transform: rotate(-6deg);
}
.sr-screen-stack figure:last-child {
  right: 13%;
  top: 65px;
  transform: rotate(8deg);
}
.sr-screen-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sr-guide {
  background: #eef4fd;
}
.sr-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sr-steps article {
  display: flex;
  gap: 18px;
  padding: 28px;
  border: 1px solid #fff;
  border-radius: 22px;
  background: #ffffff91;
  box-shadow: 0 14px 35px #48699712;
}
.sr-steps article > b {
  color: #b3c5df;
  font-size: 14px;
}
.sr-steps i {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 13px;
  background: #edf6ff;
  color: #4185dc;
  font-style: normal;
}
.sr-steps h3 {
  margin: 15px 0 5px;
}
.sr-steps p {
  margin: 0;
  color: #778194;
  font-size: 14px;
}
.sr-center {
  margin-top: 40px;
  text-align: center;
}
.sr-news {
  background: #f8f9fc;
}
.sr-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.sr-title-row h2 {
  margin-bottom: 0;
}
.sr-title-row > a {
  color: #477fd2;
  font-size: 13px;
  font-weight: 700;
}
.sr-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
.sr-post-card {
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 21px;
  background: #ffffffb5;
  box-shadow: 0 15px 40px #354c7211;
  transition: 0.25s;
}
.sr-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.sr-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(140deg, #cfddf6, #e8f7f5);
}
.sr-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.sr-post-card:hover img {
  transform: scale(1.04);
}
.sr-card-fallback {
  display: grid;
  height: 100%;
  place-content: center;
  place-items: center;
  color: #5279b8;
}
.sr-card-fallback i {
  position: relative;
  width: 40px;
  height: 40px;
}
.sr-card-fallback i:before,
.sr-card-fallback i:after {
  position: absolute;
  width: 30px;
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(90deg, #4c95ee, #75e5dd);
  content: "";
  transform: rotate(-35deg);
}
.sr-card-fallback i:after {
  width: 20px;
  top: 13px;
}
.sr-card-body {
  padding: 22px;
}
.sr-card-meta {
  display: flex;
  justify-content: space-between;
  color: #9aa3b1;
  font-size: 11px;
}
.sr-card-meta span {
  padding: 3px 9px;
  border-radius: 8px;
  background: #eaf2ff;
  color: #477cd0;
  font-weight: 700;
}
.sr-card-body h3 {
  margin: 13px 0 8px;
  font-size: 18px;
  line-height: 1.5;
}
.sr-card-description {
  display: -webkit-box;
  overflow: hidden;
  min-height: 48px;
  margin: 0;
  color: #747f91;
  font-size: 14px;
  line-height: 24px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  white-space: normal;
}
.sr-read {
  display: inline-block;
  margin-top: 15px;
  color: #477cd0;
  font-size: 12px;
  font-weight: 700;
}
.sr-faq {
  background: linear-gradient(135deg, #edf4fe, #f5f0fa);
}
.sr-faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
}
.sr-faq-grid > div:first-child > p {
  color: #747e8f;
}
.sr-faq-grid > div:first-child > a {
  color: #477cd0;
  font-weight: 700;
}
.sr-faq-list details {
  margin-bottom: 12px;
  border: 1px solid #fff;
  border-radius: 16px;
  background: #ffffff9c;
  box-shadow: 0 10px 30px #44618b0c;
}
.sr-faq-list summary {
  display: flex;
  justify-content: space-between;
  padding: 20px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.sr-faq-list summary::-webkit-details-marker {
  display: none;
}
.sr-faq-list summary i {
  color: #4c83d7;
  font-style: normal;
}
.sr-faq-list details[open] summary i {
  transform: rotate(45deg);
}
.sr-faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: #778193;
  font-size: 14px;
}
.sr-cta {
  padding: 65px 0;
  background: linear-gradient(110deg, #dceaff, #e8f7f5 55%, #f5e7f5);
  color: #172033;
}
.sr-cta > .sr-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sr-cta span {
  font-size: 10px;
  letter-spacing: 2px;
}
.sr-cta h2 {
  margin: 6px 0;
  font-size: 32px;
}
.sr-cta p {
  margin: 0;
  color: #6f798a;
}
.sr-button-light {
  background: #fff;
  color: #3678cf;
}
.sr-page-hero {
  padding: 205px 0 85px;
  background:
    radial-gradient(circle at 70% 20%, #bdd8ff, transparent 35%),
    linear-gradient(135deg, #eef4fd, #f5effa);
  text-align: center;
}
.sr-page-hero h1 {
  margin: 12px 0;
  font-size: 46px;
}
.sr-page-hero p {
  max-width: 650px;
  margin: auto;
  color: #707a8c;
}
.sr-listing {
  padding: 80px 0 100px;
  background: #f7f9fc;
}
.sr-pagination {
  margin-top: 55px;
}
.sr-pagination .page-numbers {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sr-pagination a,
.sr-pagination span {
  display: grid;
  min-width: 42px;
  height: 42px;
  padding: 0 11px;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 12px;
  background: #ffffffb0;
  color: #66748a;
  font-size: 13px;
}
.sr-pagination .current,
.sr-pagination a:hover {
  background: #5a93df;
  color: #fff;
}
.sr-single {
  background: #f6f8fc;
}
.sr-breadcrumb {
  overflow: hidden;
  padding: 185px 0 22px;
  color: #8b96a8;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sr-breadcrumb span {
  margin: 0 10px;
}
.sr-breadcrumb em {
  font-style: normal;
}
.sr-article-head {
  padding: 35px 0 50px;
  text-align: center;
}
.sr-article-head > div {
  max-width: 900px;
}
.sr-article-head > div > span {
  color: #4a80d1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}
.sr-article-head h1 {
  margin: 14px 0;
  font-size: 44px;
  line-height: 1.35;
}
.sr-article-head > div > div {
  display: flex;
  justify-content: center;
  gap: 12px;
  color: #8b96a8;
  font-size: 12px;
}
.sr-cover {
  overflow: hidden;
  max-height: 560px;
  border: 8px solid #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.sr-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sr-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: 38px;
  padding-block: 55px;
}
.sr-article-card {
  padding: 48px;
  border: 1px solid #fff;
  border-radius: 22px;
  background: #ffffffb5;
  box-shadow: 0 15px 45px #33476d12;
}
.sr-article-content {
  color: #3d4a60;
  line-height: 2;
}
.sr-article-content h2,
.sr-article-content h3 {
  color: #172033;
}
.sr-article-content h2 {
  margin-top: 1.8em;
  padding-left: 15px;
  border-left: 4px solid #5791df;
}
.sr-article-content a {
  color: #397bd1;
  text-decoration: underline;
}
.sr-article-content img {
  margin: 28px auto;
  border-radius: 12px;
}
.sr-article-content blockquote,
.sr-note {
  padding: 18px 22px;
  border-radius: 12px;
  background: #edf4ff;
}
.sr-note {
  margin-top: 35px;
}
.sr-note p {
  margin: 4px 0;
}
.sr-sidebar {
  position: sticky;
  top: 25px;
}
.sr-side-download,
.sr-latest {
  padding: 27px;
  border: 1px solid #fff;
  border-radius: 20px;
  background: #ffffffa8;
  box-shadow: 0 15px 40px #33476d0e;
}
.sr-side-download small {
  color: #4c83d7;
}
.sr-side-download p {
  color: #707b8c;
  font-size: 14px;
}
.sr-side-download a {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 20px;
  background: linear-gradient(90deg, #5caafa, #78e2db);
  color: #fff;
  font-weight: 700;
}
.sr-latest {
  margin-top: 20px;
}
.sr-latest h3 {
  margin-top: 0;
}
.sr-latest a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #e6eaf1;
}
.sr-latest b,
.sr-latest small {
  display: block;
}
.sr-latest b {
  font-size: 14px;
}
.sr-latest small {
  color: #98a2b2;
}
.sr-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 80px;
  color: #397bd1;
}
.sr-post-nav div:last-child {
  text-align: right;
}
.sr-legal {
  max-width: 860px;
  margin-top: 60px;
  margin-bottom: 95px;
  padding: 45px 60px;
  border: 1px solid #fff;
  border-radius: 22px;
  background: #ffffffa8;
  box-shadow: var(--shadow);
}
.sr-updated {
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e9f1;
  color: #8a94a5;
  font-size: 12px;
}
.sr-legal h2 {
  margin: 34px 0 10px;
  font-size: 22px;
}
.sr-legal p,
.sr-legal li {
  color: #626d7e;
}
.sr-footer {
  padding-top: 65px;
  border-top: 1px solid #fff;
  background: #e9f1fc;
  color: #778196;
}
.sr-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 65px;
  padding-bottom: 50px;
}
.sr-footer-grid > div:first-child p {
  max-width: 360px;
  font-size: 13px;
}
.sr-footer h3 {
  margin: 0 0 16px;
  color: #354052;
  font-size: 14px;
}
.sr-footer-grid > div:not(:first-child) a {
  display: block;
  margin: 9px 0;
  font-size: 13px;
}
.sr-copy {
  display: flex;
  justify-content: space-between;
  padding: 19px 0;
  border-top: 1px solid #fff;
  font-size: 11px;
}
@media (max-width: 1024px) {
  .sr-menu {
    gap: 18px;
  }
  .sr-hero h1 {
    font-size: 58px;
  }
  .sr-hero-grid {
    gap: 20px;
  }
  .sr-showcase {
    transform: scale(0.87);
  }
  .sr-screen-stack figure:first-child {
    left: 8%;
  }
  .sr-screen-stack figure:last-child {
    right: 4%;
  }
  .sr-article-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
  .sr-article-card {
    padding: 36px;
  }
}
@media (max-width: 760px) {
  .sr-container {
    width: calc(100% - 28px);
  }
  .sr-header {
    top: 8px;
  }
  .sr-notice {
    display: none;
  }
  .sr-nav {
    height: 58px;
    margin: 0;
    border-radius: 29px;
  }
  .sr-toggle {
    display: block;
  }
  .sr-menu {
    position: absolute;
    top: 67px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 15px;
    border: 1px solid #fff;
    border-radius: 22px;
    background: #eef5ffed;
    box-shadow: var(--shadow);
    text-align: center;
  }
  .sr-menu.open {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .sr-menu a {
    padding: 7px;
  }
  .sr-hero {
    min-height: auto;
    padding-top: 70px;
  }
  .sr-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 95px 0 100px;
    text-align: center;
  }
  .sr-hero h1 {
    font-size: 48px;
  }
  .sr-hero-copy > p {
    font-size: 16px;
  }
  .sr-actions {
    justify-content: center;
  }
  .sr-hero-stats {
    text-align: left;
  }
  .sr-showcase {
    min-height: 630px;
    margin-top: -30px;
    transform: scale(0.82);
  }
  .sr-section {
    padding: 70px 0;
  }
  .sr-section-head h2,
  .sr-title-row h2,
  .sr-screen-copy h2,
  .sr-faq-grid h2 {
    font-size: 31px;
  }
  .sr-feature-grid,
  .sr-post-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .sr-screens-grid,
  .sr-faq-grid,
  .sr-article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sr-screen-stack {
    min-height: 560px;
  }
  .sr-steps {
    grid-template-columns: 1fr;
  }
  .sr-cta > .sr-container {
    display: block;
    text-align: center;
  }
  .sr-cta .sr-button {
    margin-top: 25px;
  }
  .sr-footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
  .sr-footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .sr-page-hero {
    padding: 120px 0 65px;
  }
  .sr-page-hero h1 {
    font-size: 36px;
  }
  .sr-breadcrumb {
    padding-top: 100px;
  }
  .sr-article-head h1 {
    font-size: 34px;
  }
  .sr-sidebar {
    position: static;
  }
  .sr-legal {
    padding: 34px;
  }
}
@media (max-width: 520px) {
  .sr-logo {
    font-size: 15px;
  }
  .sr-logo-icon {
    width: 36px;
    height: 36px;
  }
  .sr-hero-grid {
    padding-top: 75px;
  }
  .sr-version {
    font-size: 10px;
  }
  .sr-hero h1 {
    font-size: 40px;
    letter-spacing: -2px;
  }
  .sr-hero-copy > p {
    font-size: 14px;
  }
  .sr-actions {
    flex-direction: column;
  }
  .sr-button {
    width: 100%;
  }
  .sr-hero-stats {
    gap: 7px;
  }
  .sr-hero-stats div {
    padding: 12px 9px;
  }
  .sr-hero-stats b {
    font-size: 16px;
  }
  .sr-hero-stats span {
    font-size: 9px;
  }
  .sr-showcase {
    min-height: 470px;
    margin: -80px -75px -40px;
    transform: scale(0.62);
  }
  .sr-feature-grid,
  .sr-post-grid {
    grid-template-columns: 1fr;
  }
  .sr-feature-grid article {
    padding: 28px;
  }
  .sr-screen-stack {
    min-height: 440px;
    margin: -40px -55px;
    transform: scale(0.74);
  }
  .sr-title-row {
    align-items: flex-start;
  }
  .sr-title-row > a {
    font-size: 11px;
  }
  .sr-footer-grid {
    gap: 18px;
  }
  .sr-copy {
    display: block;
    text-align: center;
  }
  .sr-page-hero h1 {
    font-size: 31px;
  }
  .sr-article-head h1 {
    font-size: 29px;
  }
  .sr-article-card {
    padding: 22px 18px;
  }
  .sr-cover {
    width: 100%;
    border-width: 0;
    border-radius: 0;
  }
  .sr-post-nav {
    grid-template-columns: 1fr;
  }
  .sr-post-nav div:last-child {
    text-align: left;
  }
  .sr-legal {
    width: calc(100% - 24px);
    padding: 25px 20px;
  }
  .sr-pagination .page-numbers {
    flex-wrap: wrap;
  }
}

/* Existing content/layout compatibility: visual theme only. */
.sr-header .sr-nav {
  margin-top: 0;
}
.sr-nav-cta {
  padding: 8px 16px;
  border: 1px solid #fff;
  border-radius: 20px;
  background: #ffffff8c;
}
.sr-link {
  align-self: center;
  padding: 10px 6px;
  color: #546171;
  font-size: 14px;
  font-weight: 700;
}
.sr-link:hover {
  color: #236cd5;
}
.sr-showcase .sr-glass-label {
  left: -12px;
  right: auto;
  top: 120px;
  bottom: auto;
  width: 190px;
}
.sr-showcase .sr-glass-label small,
.sr-showcase .sr-glass-label b,
.sr-showcase .sr-glass-label > span {
  display: block;
}
.sr-showcase .sr-glass-label small {
  color: #818b9a;
  font-size: 9px;
  letter-spacing: 1.2px;
}
.sr-showcase .sr-glass-label > span {
  width: auto;
  height: auto;
  margin-top: 6px;
  background: none;
  color: #49ad91;
  font-size: 11px;
}
.sr-showcase .sr-glass-label > span i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: #67dfbd;
}
.sr-float-card {
  position: absolute;
  z-index: 4;
  right: -5px;
  bottom: 100px;
  padding: 14px 18px;
  border: 1px solid #fff;
  border-radius: 17px;
  background: #ffffff9c;
  box-shadow: var(--shadow);
  backdrop-filter: blur(17px);
}
.sr-float-card small,
.sr-float-card b,
.sr-float-card span {
  display: block;
}
.sr-float-card small {
  color: #8b94a3;
}
.sr-float-card b {
  color: #46505e;
}
.sr-float-card span {
  color: #3885d7;
  font-size: 11px;
}

/* Compact desktop banner: removes the large unused space above hero content. */
.sr-logo > span:last-child {
  display: flex;
  flex-direction: column;
}
.sr-logo small {
  margin-top: 4px;
  color: #858d9b;
  font-size: 7px;
  letter-spacing: 1.4px;
}
.sr-hero {
  min-height: 860px;
  padding-top: 70px;
}
.sr-hero-grid {
  min-height: 760px;
  padding-top: 0;
}
.sr-showcase {
  min-height: 610px;
}
@media (max-width: 760px) {
  .sr-hero {
    min-height: auto;
    padding-top: 70px;
  }
  .sr-hero-grid {
    min-height: auto;
    padding-top: 75px;
  }
  .sr-showcase {
    min-height: 560px;
  }
}

/* Desktop client artwork */
.sr-showcase .sr-phone {
  right: -65px;
  top: 135px;
  width: 570px;
  height: 365px;
  border-width: 7px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 65px rgba(45, 66, 110, 0.25);
  transform: rotate(1deg);
}
.sr-showcase .sr-phone img {
  object-fit: cover;
}
.sr-showcase .sr-glass-label {
  left: -5px;
  top: 105px;
}
.sr-showcase .sr-float-card {
  right: -30px;
  bottom: 95px;
}
.sr-screen-stack figure {
  width: 455px;
  height: 290px;
  border-width: 7px;
  border-radius: 20px;
}
.sr-screen-stack figure:first-child {
  left: 2%;
  top: 55px;
  transform: rotate(-3deg);
}
.sr-screen-stack figure:last-child {
  right: -2%;
  top: 235px;
  transform: rotate(5deg);
}
@media (max-width: 1024px) {
  .sr-showcase .sr-phone {
    right: -110px;
    transform: scale(0.88) rotate(1deg);
  }
  .sr-screen-stack {
    transform: scale(0.88);
  }
}
@media (max-width: 760px) {
  .sr-showcase .sr-phone {
    right: 50%;
    top: 135px;
    transform: translateX(50%) scale(0.88);
  }
  .sr-showcase .sr-glass-label {
    left: 3%;
    top: 90px;
  }
  .sr-showcase .sr-float-card {
    right: 2%;
    bottom: 55px;
  }
  .sr-screen-stack {
    margin: 0;
    transform: scale(0.84);
  }
  .sr-screen-stack figure:first-child {
    left: 0;
  }
  .sr-screen-stack figure:last-child {
    right: 0;
  }
}
@media (max-width: 520px) {
  .sr-showcase .sr-phone {
    transform: translateX(50%) scale(0.72);
  }
  .sr-screen-stack {
    margin: -60px -75px;
    transform: scale(0.65);
  }
}
