:root {
  --paper: #eef8ff;
  --paper-soft: #f6fbff;
  --white: #ffffff;
  --ink: #0b3857;
  --muted: #5b7b93;
  --line: #d7ecf7;
  --accent: #38bdf8;
  --accent-deep: #0284c7;
  --dark: #075985;
  --shadow: 0 1px 3px rgba(2, 132, 199, 0.08);
  --shadow-lg: 0 12px 32px rgba(2, 132, 199, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #eaf7ff 0%, #f7fcff 100%);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body.manwa-lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font-family: inherit;
}

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

.manwa-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.manwa-skip {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 300;
  padding: 8px 14px;
  border-radius: 6px;
  color: #ffffff;
  background: #111827;
  font-size: 13px;
  transform: translateY(-160%);
}

.manwa-skip:focus {
  transform: translateY(0);
}

.manwa-shell {
  width: min(100%, 1320px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(2, 132, 199, 0.08);
}

.manwa-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: linear-gradient(90deg, #e8f7ff 0%, #f7fcff 100%);
  font-size: 12px;
  font-weight: 500;
}

.manwa-statusbar b {
  color: var(--accent-deep);
  font-weight: 700;
}

.manwa-header {
  position: sticky;
  top: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 0 24px;
  border-bottom: 1px solid #bfe6fa;
  background: linear-gradient(135deg, #e3f5ff 0%, #f8fdff 100%);
  backdrop-filter: blur(12px);
}

.manwa-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.manwa-logo {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border: 1px solid #cde9f8;
  border-radius: 8px;
  background: var(--white);
  object-fit: cover;
}

.manwa-brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.manwa-brand-copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
}

.manwa-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 500;
}

.manwa-nav > a {
  color: var(--muted);
  text-decoration: none;
}

.manwa-nav > a:hover,
.manwa-nav > a:focus-visible {
  color: var(--accent-deep);
}

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

.manwa-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.manwa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #b9e0f3;
  border-radius: 999px;
  color: #075985;
  background: #f7fdff;
  box-shadow: 0 1px 2px rgba(2, 132, 199, 0.08);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.manwa-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manwa-button:hover,
.manwa-button:focus-visible {
  border-color: var(--accent);
  color: var(--accent-deep);
  background: #eefaff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.14);
}

.manwa-button-solid {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.22);
}

.manwa-button-solid:hover,
.manwa-button-solid:focus-visible {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.28);
}

.manwa-menu {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #b9e0f3;
  border-radius: 999px;
  color: #075985;
  background: #f7fdff;
  text-decoration: none;
  cursor: pointer;
}

.manwa-menu:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
  background: #eefaff;
}

.manwa-menu svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.manwa-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 640px;
  background: linear-gradient(180deg, #e5f5ff 0%, #f7fcff 100%);
}

.manwa-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  border-right: 1px solid var(--line);
}

.manwa-eyebrow {
  display: inline-block;
  align-self: flex-start;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.manwa-hero h1 {
  margin: 14px 0 16px;
  color: var(--ink);
  font-size: 52px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0;
}

.manwa-hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--accent-deep);
  font-size: 18px;
  font-weight: 500;
}

.manwa-lead {
  max-width: 560px;
  margin: 0;
  color: #436a86;
  font-size: 16px;
}

.manwa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.manwa-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 34px 0 0;
}

.manwa-hero-meta div {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #d7ecf7;
  border-radius: 10px;
  background: #f6fbff;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.06);
}

.manwa-hero-meta dt {
  color: var(--muted);
  font-size: 12px;
}

.manwa-hero-meta dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  word-break: break-word;
}

.manwa-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 48px 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.12), transparent 38%),
    linear-gradient(135deg, #e5f5ff 0%, #f8fdff 50%, #e0f2fe 100%);
}

.manwa-phone {
  position: relative;
  z-index: 2;
  width: min(330px, 76%);
  aspect-ratio: 9 / 18;
  border: 7px solid var(--dark);
  border-radius: 38px;
  background: var(--white);
  box-shadow: 0 28px 60px rgba(2, 132, 199, 0.26);
  overflow: hidden;
}

.manwa-phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
}

.manwa-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manwa-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 3;
  width: 92px;
  height: 22px;
  border-radius: 999px;
  background: var(--dark);
  transform: translateX(-50%);
}

.manwa-phone-home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  z-index: 3;
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: rgba(7, 89, 133, 0.22);
  transform: translateX(-50%);
}

.manwa-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 164px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  font-size: 13px;
}

.manwa-float-card svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--accent-deep);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manwa-float-card b {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
}

.manwa-float-card span {
  color: var(--muted);
  font-size: 11px;
}

.manwa-float-top {
  top: 16%;
  left: 4%;
}

.manwa-float-bottom {
  right: 4%;
  bottom: 14%;
}

.manwa-section {
  padding: 80px 28px;
}

.manwa-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.manwa-section-head h2::after,
.manwa-help-intro h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-deep) 100%);
}

.manwa-section-head h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: 0;
}

.manwa-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.manwa-feature {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.manwa-feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent-deep);
  background: #eaf7ff;
}

.manwa-feature-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manwa-feature h3 {
  margin: 16px 0 6px;
  color: var(--ink);
  font-size: 16px;
}

.manwa-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.manwa-showcase {
  background: var(--paper-soft);
}

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

.manwa-product {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  will-change: transform;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px));
  transition: transform 150ms ease-out, box-shadow 220ms ease;
}

.manwa-product:nth-child(1) { --i: 1; }
.manwa-product:nth-child(2) { --i: 2; }
.manwa-product:nth-child(3) { --i: 3; }
.manwa-product:nth-child(4) { --i: 4; }

.manwa-product:hover {
  z-index: 2;
  box-shadow: 0 22px 48px rgba(2, 132, 199, 0.2);
}

.manwa-product-media {
  position: relative;
  padding-top: 222.222%;
  overflow: hidden;
  background: #ffffff;
}

.manwa-showcase-grid .manwa-product:nth-child(2) .manwa-product-media {
  padding-top: 215%;
}

.manwa-showcase-grid .manwa-product:nth-child(3) .manwa-product-media {
  padding-top: 214.444%;
}

.manwa-showcase-grid .manwa-product:nth-child(4) .manwa-product-media {
  padding-top: 220.313%;
}

.manwa-product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, 0.2) 48%, transparent 64%);
  transform: translateX(-130%);
  animation: manwaShimmer 7s ease-in-out infinite;
}

.manwa-product:hover .manwa-product-media::after {
  animation-duration: 1.2s;
}

.manwa-product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
}

.manwa-product figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  transition: color 180ms ease, background 180ms ease;
}

.manwa-product:hover figcaption {
  color: var(--accent-deep);
  background: var(--paper-soft);
}

.manwa-product figcaption span {
  color: var(--muted);
  font-size: 12px;
  transition: color 180ms ease;
}

.manwa-product:hover figcaption span {
  color: var(--accent-deep);
}

@keyframes manwaShimmer {
  0% {
    transform: translateX(-130%);
  }
  55% {
    transform: translateX(130%);
  }
  100% {
    transform: translateX(130%);
  }
}

.manwa-download {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.manwa-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.manwa-platform {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.manwa-platform-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent-deep);
  background: #eaf7ff;
}

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

.manwa-platform h3 {
  margin: 18px 0 4px;
  color: var(--ink);
  font-size: 18px;
}

.manwa-platform p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.manwa-platform-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding: 12px 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.manwa-platform-meta span {
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper-soft);
}

.manwa-platform .manwa-button {
  width: 100%;
}

.manwa-help {
  background: var(--white);
}

.manwa-help-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
}

.manwa-help-intro h2 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: 0;
}

.manwa-help-intro p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
}

.manwa-faq-list {
  border-top: 1px solid var(--line);
}

.manwa-faq {
  border-bottom: 1px solid var(--line);
}

.manwa-faq-toggle {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 4px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.manwa-faq-toggle span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.manwa-faq-toggle strong {
  font-size: 16px;
  font-weight: 600;
}

.manwa-faq-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.manwa-faq.manwa-open .manwa-faq-toggle svg {
  transform: rotate(180deg);
}

.manwa-faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.manwa-faq-body > div {
  overflow: hidden;
}

.manwa-faq-body p {
  margin: 0 0 16px;
  padding-right: 34px;
  color: var(--muted);
  font-size: 14px;
}

.manwa-faq.manwa-open .manwa-faq-body {
  grid-template-rows: 1fr;
}

.manwa-reviews {
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.manwa-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.manwa-note {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.manwa-note-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.manwa-note-head svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--accent-deep);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manwa-note p {
  flex: 1;
  margin: 14px 0;
  color: #174c70;
  font-size: 14px;
}

.manwa-note footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.manwa-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 999px;
  color: #075985;
  background: #d9f1fd;
  font-size: 13px;
  font-weight: 700;
}

.manwa-note footer div {
  min-width: 0;
}

.manwa-note footer b {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.manwa-note footer div span {
  color: var(--muted);
  font-size: 12px;
}

.manwa-footer {
  color: #ffffff;
  background: var(--dark);
}

.manwa-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  max-width: 1264px;
  margin: 0 auto;
  padding: 48px 28px 32px;
}

.manwa-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.manwa-footer-brand .manwa-logo {
  border-color: rgba(255, 255, 255, 0.45);
}

.manwa-footer-brand b {
  display: block;
  font-size: 16px;
}

.manwa-footer-brand span,
.manwa-footer p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.manwa-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  align-content: start;
}

.manwa-footer nav a {
  color: #cdeeff;
  font-size: 14px;
  text-decoration: none;
}

.manwa-footer nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.manwa-footer-copy {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.manwa-feedback {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.24);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.manwa-feedback svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manwa-feedback:hover {
  background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(2, 132, 199, 0.3);
}

.manwa-lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.manwa-lightbox.manwa-open {
  visibility: visible;
  opacity: 1;
}

.manwa-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 89, 133, 0.84);
}

.manwa-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(7, 89, 133, 0.9);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.manwa-lightbox-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.manwa-lightbox-figure {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  margin: 0;
  text-align: center;
}

.manwa-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.manwa-lightbox-caption {
  margin-top: 12px;
  color: #ffffff;
  font-size: 15px;
}

.manwa-download-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  min-height: 520px;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}

.manwa-download-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}

.manwa-download-hero h1 {
  margin: 14px 0 16px;
  color: var(--ink);
  font-size: 46px;
  line-height: 1.18;
  letter-spacing: 0;
}

.manwa-download-hero-copy > p {
  max-width: 600px;
  margin: 0;
  color: #436a86;
  font-size: 16px;
}

.manwa-download-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 48px 32px;
  background: linear-gradient(180deg, #eef8ff 0%, #f8fdff 100%);
}

.manwa-download-icon {
  width: min(190px, 64%);
  height: auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 46px rgba(2, 132, 199, 0.2);
}

.manwa-download-safe {
  position: absolute;
  right: 10%;
  bottom: 12%;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  font-size: 12px;
}

.manwa-download-safe svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--accent-deep);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manwa-steps {
  background: var(--white);
}

.manwa-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.manwa-step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
}

.manwa-step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent-deep);
  background: #eaf7ff;
  font-weight: 700;
}

.manwa-step h3 {
  margin: 16px 0 6px;
  color: var(--ink);
  font-size: 17px;
}

.manwa-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .manwa-hero-copy {
    padding: 56px 40px;
  }

  .manwa-download-hero-copy {
    padding: 56px 40px;
  }

}

@media (max-width: 960px) {
  .manwa-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid #bfe6fa;
    border-radius: 8px;
    background: #f6fbff;
    box-shadow: var(--shadow-lg);
  }

  .manwa-nav.manwa-open {
    display: flex;
  }

  .manwa-nav > a {
    padding: 11px 12px;
    border-radius: 8px;
  }

  .manwa-nav > a:hover {
    background: #eaf7ff;
  }

  .manwa-nav-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
  }

  .manwa-header-actions {
    display: none;
  }

  .manwa-menu {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .manwa-hero {
    grid-template-columns: 1fr;
  }

  .manwa-hero-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .manwa-hero-visual {
    min-height: 560px;
  }

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

  .manwa-help-layout,
  .manwa-download-hero {
    grid-template-columns: 1fr;
  }

  .manwa-download-hero-copy {
    border-bottom: 1px solid var(--line);
  }

  .manwa-download-hero-visual {
    min-height: 380px;
  }
}

@media (max-width: 720px) {
  .manwa-statusbar {
    padding: 0 16px;
  }

  .manwa-header {
    min-height: 64px;
    padding: 0 16px;
    gap: 12px;
  }

  .manwa-brand-copy small {
    display: none;
  }

  .manwa-logo {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .manwa-nav {
    top: 64px;
    left: 12px;
    right: 12px;
  }

  .manwa-hero {
    min-height: 0;
  }

  .manwa-hero-copy {
    padding: 48px 22px;
  }

  .manwa-hero h1 {
    font-size: 40px;
  }

  .manwa-hero h1 span {
    font-size: 16px;
  }

  .manwa-hero-meta {
    gap: 8px;
    margin-top: 30px;
  }

  .manwa-hero-meta div {
    padding: 10px 8px;
  }

  .manwa-hero-meta dt {
    font-size: 11px;
  }

  .manwa-hero-meta dd {
    font-size: 14px;
  }

  .manwa-hero-visual {
    min-height: 500px;
    padding: 40px 20px;
  }

  .manwa-float-card {
    min-width: 148px;
  }

  .manwa-float-top {
    left: 2%;
  }

  .manwa-float-bottom {
    right: 2%;
  }

  .manwa-section {
    padding: 56px 16px;
  }

  .manwa-section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .manwa-section-head h2,
  .manwa-help-intro h2 {
    font-size: 28px;
  }

  .manwa-feature-grid,
  .manwa-platform-grid,
  .manwa-note-grid,
  .manwa-step-grid {
    grid-template-columns: 1fr;
  }

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

  .manwa-footer-inner {
    grid-template-columns: 1fr;
    padding: 36px 20px 28px;
  }

  .manwa-download-hero-copy {
    padding: 48px 22px;
  }

  .manwa-download-hero h1 {
    font-size: 36px;
  }

  .manwa-download-hero-visual {
    min-height: 340px;
  }

  .manwa-feedback {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 480px) {
  .manwa-statusbar span:first-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .manwa-hero-actions .manwa-button,
  .manwa-nav-actions .manwa-button {
    width: 100%;
  }

  .manwa-hero-meta {
    gap: 6px;
  }

  .manwa-hero-meta dt {
    font-size: 10px;
  }

  .manwa-hero-meta dd {
    font-size: 13px;
  }

  .manwa-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .manwa-download-safe {
    right: 4%;
    bottom: 6%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .manwa-product-media::after {
    animation: none;
  }
}
