:root {
  --primary: #A6D3F2;
  --primary-strong: #174761;
  --primary-soft: #A6D3F2;
  --primary-pale: #EAF6FE;
  --secondary: #FF5844;
  --secondary-strong: #FF5844;
  --ink: #191c1e;
  --muted: #5f6b75;
  --faint: #8a96a1;
  --surface: #f7f9fb;
  --surface-low: #f2f4f6;
  --surface-card: #ffffff;
  --line: rgba(166, 211, 242, 0.38);
  --shadow: 0 12px 32px rgba(25, 28, 30, 0.06);
  --radius: 16px;
  --radius-sm: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(193, 199, 205, 0.32);
}

.nav {
  width: min(100% - 32px, var(--container));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--primary-strong);
  white-space: nowrap;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--primary-strong);
  background: var(--primary);
  font-size: 14px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #344450;
  font-size: 15px;
}

.nav-links a {
  position: relative;
  padding: 24px 0 21px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--secondary);
  transition: transform 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-strong);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language {
  color: var(--primary-strong);
  font-weight: 700;
  font-size: 13px;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--primary-strong);
  background: var(--surface-low);
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  position: relative;
}

.mobile-toggle span::before {
  top: -6px;
}

.mobile-toggle span::after {
  top: 4px;
}

.menu-open .mobile-toggle span {
  transform: rotate(45deg);
}

.menu-open .mobile-toggle span::before {
  transform: translateY(6px) rotate(90deg);
}

.menu-open .mobile-toggle span::after {
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--secondary);
  box-shadow: 0 14px 26px rgba(255, 88, 68, 0.2);
}

.btn-primary:hover {
  background: #f24f3d;
}

.btn-secondary {
  color: var(--primary-strong);
  background: var(--primary-pale);
}

.btn-outline {
  color: var(--primary-strong);
  border-color: rgba(166, 211, 242, 0.9);
  background: rgba(255, 255, 255, 0.62);
}

.btn-dark {
  color: var(--primary-strong);
  background: var(--primary);
}

.btn-wide {
  width: 100%;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--surface-low);
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--primary-strong);
  background: var(--primary-pale);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background:
    linear-gradient(120deg, rgba(247, 249, 251, 0.98), rgba(247, 249, 251, 0.88) 48%, rgba(166, 211, 242, 0.45)),
    var(--surface);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 64px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.hero h1 span {
  color: var(--secondary-strong);
}

.hero p,
.page-hero p,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.screenshot-stack {
  position: relative;
  margin-left: auto;
  width: min(100%, 680px);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 70px rgba(25, 28, 30, 0.16);
  transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
}

.screenshot-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(166, 211, 242, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.screenshot-stack img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: top center;
}

.metric-card {
  position: absolute;
  left: 16px;
  bottom: 28px;
  max-width: 250px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.metric-card strong {
  display: block;
  color: var(--primary-strong);
  font-size: 26px;
  line-height: 1.1;
}

.metric-card span {
  color: var(--muted);
  font-size: 13px;
}

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

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.split h2,
.download-layout h2,
.price-card h2,
.contact-layout h2,
.help-callout h2,
.about-story h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.split p,
.download-layout p,
.price-card p,
.contact-layout p,
.help-callout p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.bento {
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
}

.card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--surface-card);
  box-shadow: 0 1px 0 rgba(25, 28, 30, 0.04);
}

.card.lift {
  box-shadow: var(--shadow);
}

.card h3,
.card h4 {
  margin: 0 0 10px;
  line-height: 1.25;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--primary-strong);
  background: var(--primary-pale);
  font-weight: 900;
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--primary-strong);
  background: var(--primary);
}

.feature-band p {
  color: rgba(23, 71, 97, 0.78);
}

.feature-band .touch {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.42);
  font-size: 32px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.product-preview {
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.product-preview img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
}

.product-screen img {
  object-fit: contain;
  background: #fff;
}

.checks {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #2d3a43;
  font-weight: 650;
}

.checks li::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--secondary) 0 35%, transparent 38%), var(--primary-pale);
}

.testimonial {
  font-style: italic;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-style: normal;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-pale), #d9dfe5);
}

.cta-panel {
  padding: 64px;
  border-radius: 28px;
  text-align: center;
  color: var(--primary-strong);
  background: var(--primary);
}

.cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.15;
}

.cta-panel p {
  color: rgba(23, 71, 97, 0.78);
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--primary-strong);
  background: var(--primary);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(166, 211, 242, 0.96), rgba(166, 211, 242, 0.74)),
    var(--hero-image);
  background-size: cover;
  background-position: top center;
  filter: saturate(0.9);
}

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

.page-hero h1,
.page-hero p {
  max-width: 820px;
  color: var(--primary-strong);
}

.page-hero p {
  color: rgba(23, 71, 97, 0.78);
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(310px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

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

.badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--primary-strong);
  background: var(--primary-pale);
  font-size: 12px;
  font-weight: 900;
}

.badge.warn {
  color: #805200;
  background: #fff0c2;
}

.security-card {
  color: var(--primary-strong);
  background: var(--primary);
}

.security-card strong {
  display: block;
  margin: 14px 0;
  color: var(--secondary-strong);
  font-size: 32px;
  line-height: 1.15;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  overflow: hidden;
}

.step::after {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -30px;
  right: 18px;
  color: rgba(166, 211, 242, 0.35);
  font-size: 110px;
  font-weight: 900;
  line-height: 1;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  transform: translateY(-18px);
  outline: 3px solid rgba(255, 88, 68, 0.24);
  box-shadow: 0 22px 54px rgba(25, 28, 30, 0.12);
}

.ribbon {
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 6px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--secondary);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 88, 68, 0.2);
}

.price {
  margin: 20px 0;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.plan-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.mini-option {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--surface-low);
  text-align: center;
  cursor: default;
  user-select: text;
}

.feature-grid {
  grid-template-columns: 1.3fr 1fr;
}

.pricing-hero {
  min-height: 450px;
  align-items: flex-start;
  padding-top: 140px;
  text-align: center;
}

.pricing-hero::before {
  background:
    linear-gradient(180deg, rgba(166, 211, 242, 0.94), rgba(166, 211, 242, 0.72)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
}

.pricing-hero h1 {
  margin-inline: auto;
  font-size: clamp(42px, 5vw, 58px);
  text-shadow: none;
}

.pricing-hero p {
  margin: 18px auto 0;
  max-width: 740px;
  color: rgba(23, 71, 97, 0.78);
}

.plain-hero::before {
  background: var(--primary);
  filter: none;
}

.pricing-plans {
  padding: 0 0 82px;
  background: var(--surface);
}

.pricing-plans .price-grid {
  position: relative;
  z-index: 2;
  margin-top: -24px;
}

.pricing-plan {
  min-height: 555px;
  padding: 34px;
  border: 1px solid rgba(193, 199, 205, 0.16);
  box-shadow: 0 1px 0 rgba(25, 28, 30, 0.04);
}

.pricing-plan.featured {
  min-height: 620px;
  margin-top: -24px;
  border: 2px solid rgba(255, 88, 68, 0.35);
  outline: 0;
  transform: none;
  box-shadow: 0 22px 54px rgba(25, 28, 30, 0.12);
}

.plan-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.plan-label.pro {
  color: var(--secondary-strong);
}

.pricing-plan .price {
  margin: 26px 0 24px;
}

.price-old {
  display: block;
  margin: 24px 0 4px;
  color: var(--faint);
  font-size: 14px;
  text-decoration: line-through;
}

.discount-pill {
  display: inline-flex;
  width: max-content;
  padding: 4px 10px;
  border-radius: 5px;
  color: var(--secondary-strong);
  background: rgba(255, 88, 68, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.price-list {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #27343f;
  font-size: 14px;
}

.price-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.price-list svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-list .ok {
  color: var(--primary);
}

.price-list .hot {
  color: var(--secondary-strong);
}

.price-list .no {
  color: #9aa6b2;
}

.pricing-plan .btn {
  min-height: 52px;
}

.plan-note {
  margin: 12px 0 0;
  color: var(--faint);
  font-size: 11px;
  text-align: center;
}

.trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 26px;
  color: #a8b1ba;
  font-size: 13px;
}

.trust-line svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.pricing-features {
  padding: 102px 0 118px;
  background: var(--surface-low);
}

.pricing-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.pricing-bento .card {
  min-height: 140px;
}

.pricing-bento .wide {
  grid-column: span 7;
}

.pricing-bento .support {
  grid-column: span 5;
  color: var(--primary-strong);
  background: var(--primary);
}

.pricing-bento .support p {
  color: rgba(23, 71, 97, 0.78);
}

.pricing-bento .small {
  grid-column: span 4;
  border-left: 4px solid var(--secondary);
}

.pricing-bento .long {
  grid-column: span 8;
}

.feature-art {
  position: absolute;
  right: 22px;
  bottom: 10px;
  width: 150px;
  height: 115px;
  color: rgba(25, 28, 30, 0.08);
}

.feature-card-rel {
  position: relative;
  overflow: hidden;
}

.feature-mini-icons {
  display: flex;
  margin-top: 34px;
}

.feature-mini-icons span {
  width: 40px;
  height: 40px;
  margin-right: -10px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--primary-pale);
  color: var(--primary-strong);
}

.feature-mini-icons svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-mini-icons span:last-child {
  background: var(--secondary);
  color: #fff;
}

.learn-link {
  position: relative;
  z-index: 1;
  float: right;
  margin-top: -18px;
  color: var(--primary-strong);
  font-size: 14px;
  font-weight: 900;
}

.about-story {
  align-items: center;
}

.quote {
  padding: 26px;
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--surface-low);
  font-size: 19px;
  font-style: italic;
  font-weight: 700;
}

.stat-card {
  display: grid;
  place-items: center;
  min-height: 260px;
  text-align: center;
}

.stat-number {
  color: var(--secondary-strong);
  font-size: 58px;
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
  gap: 28px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(166, 211, 242, 0.55);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--ink);
  background: var(--surface-low);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(166, 211, 242, 0.45);
}

.field textarea {
  resize: vertical;
  min-height: 150px;
}

.info-list {
  display: grid;
  gap: 22px;
}

.info-item {
  display: flex;
  gap: 14px;
}

.map-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.78) 1px, transparent 1px),
    #b8c2ca;
  background-size: 44px 44px;
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(166, 211, 242, 0.32), rgba(255, 255, 255, 0.15));
}

.pin {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--secondary);
  box-shadow: 0 0 0 14px rgba(255, 88, 68, 0.13);
  font-weight: 900;
}

.map-embed {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: var(--radius);
  background: var(--surface-low);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

.map-link {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(25, 28, 30, 0.12);
}

.help-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
}

.site-footer {
  padding: 56px 0 28px;
  background: var(--surface-low);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 42px;
}

.footer-title {
  margin: 0 0 14px;
  color: var(--primary-strong);
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary-strong);
}

.copyright {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(193, 199, 205, 0.5);
  color: var(--muted);
  font-size: 13px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 28, 38, 0.5);
}

.modal.open {
  display: flex;
}

.modal-card {
  width: min(100%, 460px);
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 70px rgba(12, 28, 38, 0.24);
}

.modal-card h3 {
  margin: 0 0 10px;
}

.modal-card p {
  color: var(--muted);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 980px) {
  .nav-links,
  .language {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .menu-open .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: grid;
    gap: 2px;
    padding: 16px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 22px 54px rgba(25, 28, 30, 0.14);
  }

  .menu-open .nav-links a {
    padding: 13px 10px;
    border-radius: var(--radius-sm);
  }

  .menu-open .nav-links a::after {
    display: none;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .screenshot-stack {
    transform: none;
  }

  .bento,
  .grid-3,
  .price-grid,
  .feature-grid,
  .pricing-bento {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .pricing-bento .wide,
  .pricing-bento .support,
  .pricing-bento .small,
  .pricing-bento .long {
    grid-column: auto;
  }

  .pricing-plan.featured {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .nav {
    width: min(100% - 24px, var(--container));
  }

  .brand span:last-child {
    max-width: 9.5em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-actions .btn {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding: 56px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .download-cards,
  .grid-2,
  .form-grid,
  .plan-options {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .card,
  .feature-band,
  .cta-panel,
  .help-callout {
    padding: 24px;
  }

  .feature-band,
  .help-callout {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .screenshot-stack img,
  .product-preview img {
    height: 300px;
  }
}
