:root {
  color-scheme: dark;
  --bg: #020307;
  --panel: rgba(8, 14, 26, .74);
  --panel-strong: rgba(11, 18, 32, .92);
  --line: rgba(143, 181, 255, .18);
  --line-strong: rgba(76, 139, 255, .42);
  --text: #f7fbff;
  --muted: rgba(230, 241, 255, .68);
  --faint: rgba(230, 241, 255, .42);
  --blue: #1687ff;
  --cyan: #24d7ff;
  --deep: #0b2cff;
  --shadow: 0 30px 110px rgba(0, 0, 0, .66);
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 14%),
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.024) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 88px 88px, 88px 88px, auto;
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 58%, rgba(10, 121, 255, .42), transparent 38%),
    radial-gradient(ellipse at 50% 76%, rgba(18, 49, 255, .55), transparent 48%),
    linear-gradient(180deg, rgba(2,3,7,.18), rgba(2,3,7,.95) 86%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 62px, rgba(255,255,255,.026) 62px 63px),
    repeating-linear-gradient(0deg, transparent 0 62px, rgba(255,255,255,.022) 62px 63px);
  mask-image: linear-gradient(180deg, #000, transparent 74%);
}

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

.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 62px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 0 clamp(16px, 4vw, 54px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(2, 3, 7, .76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 0 28px rgba(22,135,255,.28);
}

.brand span { white-space: nowrap; }

.navLinks {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2.4vw, 34px);
}

.navLinks a {
  color: rgba(244, 249, 255, .72);
  font-size: 13px;
  font-weight: 800;
}

.navLinks a:hover {
  color: #fff;
}

.navLinks a.active {
  color: #fff;
}

.headerCta,
.primaryButton,
.secondaryButton {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 900;
  white-space: nowrap;
}

.headerCta,
.primaryButton {
  position: relative;
  overflow: hidden;
  color: #08101f;
  background: #fff;
  box-shadow: 0 14px 42px rgba(36, 215, 255, .22);
}

.headerCta.is-downloading,
.primaryButton.is-downloading {
  pointer-events: none;
  color: #06101f;
  background: linear-gradient(90deg, #24d7ff, #33d39f);
  box-shadow: 0 16px 46px rgba(51, 211, 159, .28);
}

.headerCta::after,
.primaryButton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%);
  background: linear-gradient(90deg, transparent, rgba(22,135,255,.3), transparent);
  animation: buttonSheen 4.4s ease-in-out infinite;
}

@keyframes buttonSheen {
  0%, 52% { transform: translateX(-130%); }
  78%, 100% { transform: translateX(130%); }
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 108px 16px 260px;
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(1120px, 100vw);
  height: 320px;
  pointer-events: none;
  border: 1px solid rgba(36, 215, 255, .08);
  transform: translateX(-50%);
}

.hero::before {
  top: 42px;
  border-radius: 0 0 50% 50%;
  border-top: 0;
}

.hero::after {
  bottom: -150px;
  border-radius: 50% 50% 0 0;
  border-bottom: 0;
}

.particleField {
  position: absolute;
  inset: 70px 0 auto;
  height: 210px;
  pointer-events: none;
  overflow: hidden;
}

.particleField span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(36, 215, 255, .7);
  box-shadow: 0 0 18px rgba(36, 215, 255, .82);
  animation: particleDrift 7s ease-in-out infinite;
}

.particleField span:nth-child(1) { left: 10%; top: 32px; }
.particleField span:nth-child(2) { left: 20%; top: 74px; animation-delay: .5s; }
.particleField span:nth-child(3) { left: 32%; top: 18px; animation-delay: 1s; }
.particleField span:nth-child(4) { right: 12%; top: 28px; animation-delay: .25s; }
.particleField span:nth-child(5) { right: 24%; top: 82px; animation-delay: .8s; }
.particleField span:nth-child(6) { right: 36%; top: 16px; animation-delay: 1.2s; }

@keyframes particleDrift {
  0%, 100% { transform: translateY(0) scale(1); opacity: .3; }
  50% { transform: translateY(20px) scale(1.45); opacity: 1; }
}

.heroCenter {
  position: relative;
  z-index: 2;
  width: min(940px, 100%);
  text-align: center;
  animation: heroEnter .78s ease both;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 0 15px;
  color: rgba(238, 247, 255, .82);
  background: rgba(255,255,255,.045);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

h1 {
  position: relative;
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 900;
  text-shadow: 0 0 42px rgba(0,0,0,.55);
}

h1::after {
  content: "";
  position: absolute;
  top: -12%;
  bottom: -12%;
  width: 24%;
  left: -32%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.08) 28%, rgba(255,255,255,.85) 48%, rgba(36,215,255,.42) 58%, transparent 78%);
  filter: blur(2px);
  transform: skewX(-18deg);
  mix-blend-mode: screen;
  animation: titleBeam 5s ease-in-out infinite;
}

@keyframes titleBeam {
  0%, 18% { left: -34%; opacity: 0; }
  28% { opacity: .95; }
  58% { left: 112%; opacity: .95; }
  70%, 100% { left: 112%; opacity: 0; }
}

h1 mark {
  color: #fff;
  background: transparent;
}

.heroText {
  max-width: 690px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.9;
}

.heroActions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primaryButton,
.secondaryButton {
  min-height: 48px;
  padding: 0 24px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.secondaryButton {
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
}

.primaryButton:hover,
.secondaryButton:hover {
  transform: translateY(-2px);
}

.heroDock {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.heroDock span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(236, 247, 255, .74);
  background: rgba(255,255,255,.045);
  font-size: 13px;
  font-weight: 800;
}

.heroPreview {
  position: absolute;
  left: 50%;
  bottom: -142px;
  z-index: 2;
  width: min(980px, calc(100% - 26px));
  transform: translateX(-50%);
}

.appFrame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px 28px 0 0;
  background:
    linear-gradient(180deg, rgba(15, 28, 56, .94), rgba(4, 8, 18, .92)),
    var(--panel-strong);
  box-shadow: var(--shadow), 0 0 70px rgba(22, 135, 255, .28);
  backdrop-filter: blur(22px);
  animation: frameLift .9s .15s ease both, frameFloat 7s ease-in-out infinite 1s;
}

@keyframes frameLift {
  from { opacity: 0; transform: translateY(34px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes frameFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

.frameTop {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.traffic {
  display: flex;
  gap: 7px;
}

.traffic i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
}

.traffic i:nth-child(1) { background: #ff5d5d; }
.traffic i:nth-child(2) { background: #ffd15d; }
.traffic i:nth-child(3) { background: #42e096; }

.frameTop strong { color: #fff; }
.frameTop span { color: var(--faint); font-size: 13px; font-weight: 800; }

.searchBar {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 20px 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 0 16px;
  background: rgba(255,255,255,.055);
}

.searchBar span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(245,250,255,.88);
  font-weight: 900;
}

.searchBar b {
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
}

.workspace {
  position: relative;
  display: grid;
  grid-template-columns: 156px minmax(0,1fr);
  gap: 14px;
  padding: 18px 20px 24px;
}

.sourceTile,
.resultGrid article {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
}

.sourceTile {
  min-height: 210px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 18px;
}

.sourceTile img {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,.38), 0 0 34px rgba(22,135,255,.28);
}

.sourceTile small {
  color: var(--faint);
  font-weight: 900;
}

.resultGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}

.resultGrid article {
  position: relative;
  min-height: 210px;
  animation: tileLift 4.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * .15s);
}

@keyframes tileLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.resultGrid article img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.98) contrast(1.03);
}

.resultGrid article b {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #06101f;
  background: #fff;
  font-size: 12px;
  white-space: nowrap;
}

.scanBeam {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  box-shadow: 0 0 24px rgba(36,215,255,.75);
  animation: scan 3.2s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(-92px); opacity: .24; }
  50% { transform: translateY(96px); opacity: 1; }
}

.why {
  width: min(1120px, calc(100% - 34px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 132px auto 0;
}

.why article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(18px);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.why article:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(255,255,255,.07);
}

.why span {
  color: var(--cyan);
  font-weight: 950;
}

.why h2 {
  margin: 44px 0 10px;
  font-size: 24px;
}

.why p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.downloadPanel {
  width: min(960px, calc(100% - 34px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  margin: 82px auto 0;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(20, 92, 255, .18), rgba(36, 215, 255, .08)),
    rgba(255,255,255,.045);
  box-shadow: 0 24px 90px rgba(0,0,0,.38);
}

.downloadPanel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
}

.downloadPanel p:not(.eyebrow) {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.primaryButton.large {
  min-width: 160px;
}

.footer {
  width: min(1120px, calc(100% - 34px));
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding: 34px 0 44px;
  color: var(--faint);
  font-size: 12px;
}

.footer a {
  color: #fff;
  font-weight: 700;
}

.footerLegal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer .beianLink {
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
}

.footer .beianLink:hover {
  color: #fff;
}

.footer .publicSecurityBeian {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer .publicSecurityBeian img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 auto;
}

.pricingPage {
  padding: 118px 0 0;
}

.pricingHero {
  width: min(980px, calc(100% - 34px));
  margin: 0 auto 42px;
  text-align: center;
}

.pricingHero h1 {
  font-size: clamp(46px, 7vw, 92px);
}

.pricingHero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

.pricingGrid {
  width: min(1200px, calc(100% - 34px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.priceCard {
  position: relative;
  overflow: hidden;
  min-height: 574px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  padding: 28px 24px 22px;
  background:
    linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(12, 15, 26, .88);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.priceCard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(36,215,255,.14), transparent);
  opacity: 0;
  transform: translateX(-55%);
  transition: opacity .24s ease, transform .6s ease;
}

.priceCard:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background:
    linear-gradient(150deg, rgba(22,135,255,.18), rgba(255,255,255,.035)),
    rgba(12, 15, 26, .92);
}

.priceCard:hover::before {
  opacity: 1;
  transform: translateX(55%);
}

.priceCard.featured {
  border-color: rgba(36, 215, 255, .82);
  box-shadow: 0 30px 110px rgba(22,135,255,.24);
}

.recommend {
  position: absolute;
  right: 18px;
  top: 18px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  color: #06101f;
  background: linear-gradient(90deg, #24d7ff, #33d39f);
  font-size: 12px;
  font-weight: 950;
}

.planSymbol {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  color: rgba(255,255,255,.88);
  font-weight: 950;
}

.planLabel {
  margin: 24px 0 18px;
  color: rgba(226,240,255,.7);
  font-weight: 900;
}

.priceCard h2 {
  min-height: 52px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 24px;
  color: #fff;
  font-size: 30px;
}

.priceCard h2 span {
  font-size: 22px;
}

.priceCard h2 em {
  color: rgba(235,245,255,.72);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
}

.priceCard h2 del {
  margin-left: auto;
  color: rgba(235,245,255,.48);
  font-size: 14px;
  font-weight: 800;
}

.planButton {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 12px;
  color: #07111e;
  background: #fff;
  font-weight: 950;
  transition: transform .22s ease, box-shadow .22s ease;
}

.planButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(36,215,255,.22);
}

.planButton.accent {
  color: #06101f;
  background: linear-gradient(90deg, #24d7ff, #33d39f);
}

.planButton.muted {
  color: #fff;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.1);
}

.priceCard ul {
  min-height: 178px;
  margin: 22px 0 18px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,.1);
  list-style: none;
}

.priceCard li {
  position: relative;
  padding-left: 18px;
  margin: 0 0 13px;
  color: rgba(235,245,255,.82);
  line-height: 1.45;
}

.priceCard li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(36,215,255,.7);
}

.priceCard small {
  color: var(--faint);
  font-weight: 800;
}

.sectionTitle {
  text-align: center;
  margin-bottom: 26px;
}

.sectionTitle h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
}

.compareSection,
.pricingFaq {
  width: min(1180px, calc(100% - 34px));
  margin: 84px auto 0;
}

.compareWrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 22px 70px rgba(0,0,0,.24);
}

.compareTable {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compareTable th,
.compareTable td {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  text-align: left;
  color: rgba(235,245,255,.82);
}

.compareTable th {
  color: #fff;
  font-size: 18px;
}

.compareTable td:first-child {
  color: #fff;
  font-weight: 900;
}

.compareTable tr:last-child td {
  border-bottom: 0;
}

.pricingFaq {
  display: grid;
  gap: 12px;
}

.pricingFaq details {
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding: 0 0 16px;
}

.pricingFaq summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.pricingFaq summary::after {
  content: "+";
  color: rgba(255,255,255,.7);
  font-size: 22px;
}

.pricingFaq details[open] summary::after {
  content: "-";
}

.pricingFaq p {
  max-width: 820px;
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.75;
}

.pricingDownload {
  margin-top: 76px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 920px) {
  .siteHeader {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .navLinks {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 0;
  }

  .heroPreview {
    position: relative;
    left: auto;
    bottom: auto;
    transform: translateY(48px);
  }

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

  .sourceTile {
    min-height: 170px;
  }

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

  .resultGrid article {
    min-height: 140px;
  }

  .why {
    margin-top: 92px;
    grid-template-columns: 1fr;
  }

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

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

  .pricingBody .siteHeader {
    height: auto;
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .pricingBody .navLinks {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    width: 100%;
    order: 3;
  }

  .pricingBody .pricingPage {
    padding-top: 136px;
  }
}

@media (max-width: 620px) {
  .siteHeader {
    height: 58px;
    padding: 0 12px;
  }

  .brand span {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .headerCta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: 44px;
  }

  .heroText {
    font-size: 16px;
  }

  .heroActions {
    flex-direction: column;
  }

  .primaryButton,
  .secondaryButton {
    width: 100%;
  }

  .heroDock {
    gap: 7px;
  }

  .heroDock span {
    padding: 0 10px;
    font-size: 12px;
  }

  .heroPreview {
    width: 100%;
    transform: translateY(42px);
  }

  .appFrame {
    border-radius: 22px 22px 0 0;
  }

  .frameTop {
    grid-template-columns: auto 1fr;
  }

  .frameTop span {
    display: none;
  }

  .searchBar {
    margin: 14px 14px 0;
    padding: 0 12px;
  }

  .workspace {
    padding: 14px;
  }

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

  .resultGrid article {
    min-height: 112px;
  }

  .why,
  .downloadPanel,
  .footer {
    width: calc(100% - 28px);
  }

  .why {
    margin-top: 78px;
  }

  .why h2 {
    margin-top: 32px;
  }

  .downloadPanel {
    margin-top: 58px;
    padding: 24px;
  }

  .footer {
    flex-direction: column;
  }

  .pricingPage {
    padding-top: 96px;
  }

  .pricingBody .pricingPage {
    padding-top: 132px;
  }

  .pricingBody .siteHeader {
    gap: 8px 12px;
  }

  .pricingBody .navLinks {
    gap: 18px;
  }

  .pricingHero h1 {
    font-size: 42px;
  }

  .pricingGrid {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  .priceCard {
    min-height: auto;
  }

  .priceCard ul {
    min-height: 0;
  }

  .compareSection,
  .pricingFaq {
    width: calc(100% - 28px);
    margin-top: 62px;
  }

  .compareTable th,
  .compareTable td {
    padding: 16px;
  }
}
