﻿:root {
  --bg: #fffaf4;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-soft: #fff4e6;
  --line: rgba(137, 74, 19, 0.12);
  --line-strong: rgba(137, 74, 19, 0.18);
  --text: #3c2a1b;
  --text-soft: #6e5440;
  --title: #25160c;
  --primary: #ff8a2a;
  --primary-deep: #f26d0d;
  --secondary: #ffe2bf;
  --accent: #ffd35f;
  --green: #74c98f;
  --peach: #f6a880;
  --shadow: 0 24px 60px rgba(80, 40, 8, 0.12);
  --shadow-soft: 0 14px 34px rgba(101, 58, 15, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 222, 181, 0.58), transparent 28%),
    radial-gradient(circle at right 20%, rgba(255, 202, 128, 0.28), transparent 26%),
    linear-gradient(180deg, #fffaf4 0%, #fff7ef 100%);
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

code {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 232, 204, 0.88);
  color: #8f4d11;
  font-size: 0.9em;
  overflow-wrap: anywhere;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 244, 0.72);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 250, 244, 0.92);
  border-bottom-color: rgba(137, 74, 19, 0.1);
  box-shadow: 0 8px 24px rgba(101, 58, 15, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  padding: 4px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 246, 233, 0.94) 100%);
  border: 1px solid rgba(137, 74, 19, 0.1);
  box-shadow:
    0 14px 28px rgba(101, 58, 15, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--title);
}

.brand-subtitle {
  font-size: 0.82rem;
  color: var(--text-soft);
  letter-spacing: 0.01em;
}

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

.nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #ffb25b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

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

.header-actions,
.hero-actions,
.contact-actions,
.mobile-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: 0 16px 28px rgba(242, 109, 13, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 34px rgba(242, 109, 13, 0.32);
}

.btn-secondary {
  color: var(--title);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(137, 74, 19, 0.12);
  box-shadow: var(--shadow-soft);
}

.btn-secondary.light {
  background: rgba(255, 248, 240, 0.88);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(137, 74, 19, 0.2);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--title);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu {
  display: none;
}

.quick-nav {
  position: fixed;
  top: 50%;
  right: 24px;
  z-index: 44;
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 24px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(137, 74, 19, 0.1);
  box-shadow:
    0 18px 42px rgba(101, 58, 15, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}

.quick-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 96px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.quick-nav-link:hover,
.quick-nav-link:focus-visible,
.quick-nav-link.is-active {
  color: var(--title);
  background: rgba(255, 245, 231, 0.96);
  box-shadow: 0 10px 20px rgba(101, 58, 15, 0.08);
  transform: translateX(-2px);
}

.quick-nav-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(242, 109, 13, 0.22);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.quick-nav-link:hover .quick-nav-dot,
.quick-nav-link:focus-visible .quick-nav-dot,
.quick-nav-link.is-active .quick-nav-dot,
.quick-nav-cta .quick-nav-dot {
  background: linear-gradient(180deg, var(--primary), #ffb867);
  box-shadow: 0 0 0 5px rgba(255, 138, 42, 0.12);
  transform: scale(1.08);
}

.quick-nav-cta {
  background: rgba(255, 138, 42, 0.08);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 52px 0 28px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 185, 98, 0.26), transparent 26%),
    radial-gradient(circle at 85% 25%, rgba(255, 220, 170, 0.32), transparent 24%),
    linear-gradient(135deg, rgba(255, 247, 235, 0.38) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 52px;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.cta-shell h2,
.legal-hero h1 {
  margin: 0;
  color: var(--title);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
}

.hero-break {
  display: none;
}

.hero-badge,
.eyebrow,
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(137, 74, 19, 0.12);
  color: var(--primary-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.eyebrow.dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff0db;
}

.hero-text,
.section-heading p,
.showcase-item p,
.feature-card p,
.scenario-card p,
.compliance-card p,
.timeline-item span,
.company-note,
.cta-shell p,
.contact-row span,
.footer-copy,
.legal-lead,
.legal-meta,
.legal-card p,
.legal-card li {
  color: var(--text-soft);
}

.hero-slogan {
  display: grid;
  gap: 8px;
  width: fit-content;
  max-width: min(100%, 560px);
  margin-top: 18px;
  padding: 16px 20px 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 223, 170, 0.5), transparent 34%),
    linear-gradient(135deg, rgba(255, 249, 241, 0.96) 0%, rgba(255, 238, 212, 0.92) 100%);
  border: 1px solid rgba(242, 109, 13, 0.14);
  box-shadow:
    0 16px 34px rgba(101, 58, 15, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.hero-slogan-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-deep);
}

.hero-slogan strong {
  color: var(--title);
  font-size: clamp(1.22rem, 2.25vw, 1.72rem);
  line-height: 1.35;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 620px;
  font-size: 1.06rem;
}

.hero-actions {
  margin-top: 32px;
}

.hero-note {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.hero-access {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  max-width: 620px;
}

.hero-access-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(137, 74, 19, 0.1);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-access-card:hover,
.hero-access-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 109, 13, 0.18);
  box-shadow: 0 18px 34px rgba(101, 58, 15, 0.12);
}

.hero-access-copy {
  display: grid;
  gap: 4px;
}

.hero-access-copy strong {
  color: var(--title);
}

.hero-access-copy span {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.hero-access-card img {
  flex: 0 0 auto;
  width: 86px;
  height: 86px;
  padding: 6px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(137, 74, 19, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.stat-card,
.feature-card,
.scenario-card,
.compliance-card,
.capability-card,
.company-card,
.official-panel,
.contact-panel,
.legal-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 22px;
}

.stat-value {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--primary-deep);
}

.stat-label {
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 26px;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-visual::before {
  width: 320px;
  height: 320px;
  right: 20px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(255, 245, 230, 0.68) 0%, rgba(255, 235, 210, 0.24) 46%, transparent 74%);
  opacity: 0.42;
  filter: blur(6px);
}

.hero-visual::after {
  width: 96px;
  height: 96px;
  top: 96px;
  right: 18px;
  background: radial-gradient(circle, rgba(255, 235, 205, 0.58) 0%, transparent 72%);
  opacity: 0.34;
  filter: blur(4px);
}

.hero-device {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  padding: 18px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 246, 233, 0.92) 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform: translateX(-18px);
}

.device-header {
  display: flex;
  gap: 8px;
  padding: 2px 6px 16px;
}

.device-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(137, 74, 19, 0.14);
}

.device-screen {
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 221, 168, 0.42), transparent 32%),
    linear-gradient(180deg, #fff9f0 0%, #ffffff 100%);
  border: 1px solid rgba(137, 74, 19, 0.08);
}

.product-chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 138, 42, 0.12);
  color: var(--primary-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.screen-title {
  margin-top: 16px;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--title);
}

.screen-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.screen-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(137, 74, 19, 0.08);
}

.screen-item strong,
.feature-card h3,
.scenario-card h3,
.compliance-card h3,
.showcase-item h3,
.capability-card strong,
.timeline-item strong,
.contact-row strong,
.legal-card h2,
.legal-card h3 {
  color: var(--title);
}

.screen-item small {
  display: block;
  margin-top: 2px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.screen-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
}

.screen-dot.orange {
  background: var(--primary);
}

.screen-dot.yellow {
  background: var(--accent);
}

.screen-dot.green {
  background: var(--green);
}

.screen-footer {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  color: var(--text);
  background: rgba(255, 230, 194, 0.55);
}

.hero-mascot-shell {
  position: absolute;
  right: -22px;
  bottom: 0;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 10px;
  width: min(33vw, 196px);
  animation: mascotFloat 5.6s ease-in-out infinite;
  pointer-events: none;
}

.hero-mascot-shell::before {
  content: none;
}

.hero-mascot-shell::after {
  content: none;
}

.hero-mascot-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: end center;
  width: 100%;
  min-height: 168px;
  padding-top: 18px;
}

.hero-mantou-shadow {
  position: absolute;
  bottom: 16px;
  width: 84px;
  height: 14px;
  border-radius: 999px;
  background: rgba(113, 62, 10, 0.08);
  filter: blur(9px);
}

.mantou-mascot {
  position: relative;
  width: 72px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 50% 50% 48% 48% / 70% 70% 30% 30%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.9) 0%, transparent 52%),
    linear-gradient(180deg, #fffcfa 0%, #ffe8d6 60%, #ffd4b8 100%);
  box-shadow:
    0 8px 24px rgba(139, 69, 19, 0.12),
    0 4px 8px rgba(139, 69, 19, 0.06),
    inset 0 -2px 6px rgba(255, 160, 122, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.9);
}

.mantou-mascot::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 50%;
  width: 28%;
  height: 12%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, transparent 100%);
  transform: translateX(-50%);
  filter: blur(0.3px);
}

.hero-mantou {
  width: min(27.8vw, 116px);
  height: min(23.2vw, 96px);
  filter: drop-shadow(0 18px 24px rgba(113, 62, 10, 0.12));
  animation: mascotChew 3.8s ease-in-out infinite;
}

.mantou-face {
  position: absolute;
  top: 38%;
  left: 50%;
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: space-between;
  transform: translate(-50%, -50%);
}

.mantou-eye {
  width: 5.5px;
  height: 5.5px;
  border-radius: 50%;
  background: #2d2a26;
  animation: mt-blink 4s infinite;
}

.mantou-cheek {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 120, 110, 0.22);
  filter: blur(1.5px);
}

.mantou-cheek-l {
  left: 7%;
}

.mantou-cheek-r {
  right: 7%;
}

.mantou-mouth {
  position: absolute;
  bottom: 16%;
  left: 50%;
  width: 10px;
  height: 4px;
  border-bottom: 2px solid #2d2a26;
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
}

.mascot-bubble {
  position: absolute;
  top: 2px;
  right: -8px;
  z-index: 2;
  display: grid;
  gap: 1px;
  padding: 8px 11px;
  border-radius: 16px 16px 16px 6px;
  color: var(--title);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(242, 109, 13, 0.16);
  box-shadow: 0 12px 24px rgba(101, 58, 15, 0.12);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.25;
  animation: bubblePop 4.2s ease-in-out infinite;
}

.mascot-bubble::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -6px;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.94);
  border-right: 1px solid rgba(242, 109, 13, 0.16);
  border-bottom: 1px solid rgba(242, 109, 13, 0.16);
  transform: rotate(45deg);
}

.mascot-bubble span {
  color: var(--primary-deep);
  font-size: 0.68rem;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 3px;
  min-width: 190px;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(137, 74, 19, 0.08);
  box-shadow: var(--shadow-soft);
}

.floating-card strong {
  color: var(--title);
}

.floating-card span {
  font-size: 0.84rem;
  color: var(--text-soft);
}

.floating-card-top {
  top: 70px;
  left: -6px;
}

.floating-card-bottom {
  right: -24px;
  bottom: 112px;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 244, 230, 0.62) 0%, rgba(255, 250, 244, 0.2) 100%);
}

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

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

.section-heading h2,
.cta-shell h2,
.legal-hero h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-top: 16px;
}

.section-heading p,
.cta-shell p,
.legal-lead {
  margin: 16px 0 0;
  font-size: 1rem;
}

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

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

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

.feature-card,
.scenario-card,
.compliance-card {
  padding: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover,
.feature-card:focus-within,
.scenario-card:hover,
.compliance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(101, 58, 15, 0.12);
  border-color: rgba(242, 109, 13, 0.16);
}

.feature-card-primary {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(255, 223, 170, 0.32), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 246, 233, 0.92) 100%);
  border-color: rgba(242, 109, 13, 0.16);
  box-shadow: 0 24px 44px rgba(101, 58, 15, 0.14);
}

.feature-card h3,
.scenario-card h3,
.compliance-card h3 {
  margin: 18px 0 10px;
}

.feature-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
}

.feature-card li + li,
.legal-card li + li {
  margin-top: 8px;
}

.feature-card li {
  position: relative;
  padding-left: 18px;
}

.feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, var(--primary), #ffb867);
}

.card-icon {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 22px;
  color: var(--icon-color, var(--primary-deep));
  background: linear-gradient(135deg, var(--icon-bg-start, rgba(255, 138, 42, 0.16)) 0%, var(--icon-bg-end, rgba(255, 222, 177, 0.78)) 100%);
  border: 1px solid var(--icon-border, rgba(137, 74, 19, 0.08));
  box-shadow:
    0 14px 28px rgba(101, 58, 15, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.card-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.08) 100%);
  z-index: -1;
}

.card-icon::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  filter: blur(1px);
}

.card-icon svg {
  position: relative;
  z-index: 1;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tone-orange {
  --icon-color: #ee740d;
  --icon-bg-start: rgba(255, 147, 62, 0.2);
  --icon-bg-end: rgba(255, 230, 196, 0.94);
  --icon-border: rgba(242, 109, 13, 0.14);
}

.tone-gold {
  --icon-color: #b87500;
  --icon-bg-start: rgba(255, 214, 112, 0.24);
  --icon-bg-end: rgba(255, 244, 206, 0.96);
  --icon-border: rgba(184, 117, 0, 0.14);
}

.tone-peach {
  --icon-color: #cf6d37;
  --icon-bg-start: rgba(246, 168, 128, 0.2);
  --icon-bg-end: rgba(255, 231, 214, 0.94);
  --icon-border: rgba(207, 109, 55, 0.12);
}

.tone-green {
  --icon-color: #2e8a4b;
  --icon-bg-start: rgba(116, 201, 143, 0.2);
  --icon-bg-end: rgba(226, 248, 232, 0.94);
  --icon-border: rgba(46, 138, 75, 0.12);
}

.feature-card .btn,
.scenario-card .btn,
.compliance-card .btn {
  margin-top: 20px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1060px;
  margin: -10px auto 20px;
}

.preview-toolbar p {
  margin: 0;
  color: var(--text-soft);
  font-weight: 700;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(137, 74, 19, 0.1);
  border-radius: 999px;
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(101, 58, 15, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.carousel-control span {
  display: inline-flex;
  transform: translateY(-1px);
  font-size: 1.8rem;
  line-height: 1;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(101, 58, 15, 0.12);
}

.carousel-control:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.screenshot-carousel {
  display: grid;
  gap: 16px;
}

.screenshot-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 2);
  gap: 24px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.screenshot-track::-webkit-scrollbar {
  display: none;
}

.screenshot-card {
  display: grid;
  gap: 20px;
  align-content: start;
  padding: 24px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 223, 170, 0.26), transparent 30%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(137, 74, 19, 0.1);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.screenshot-card:hover,
.screenshot-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(242, 109, 13, 0.16);
  box-shadow: 0 24px 48px rgba(101, 58, 15, 0.14);
}

.screenshot-card-featured {
  background:
    radial-gradient(circle at top left, rgba(255, 184, 103, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 247, 235, 0.92) 100%);
}

.screenshot-card-study {
  background:
    radial-gradient(circle at top right, rgba(255, 175, 120, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 236, 0.92) 100%);
}

.screenshot-card-mnemonic {
  background:
    radial-gradient(circle at top right, rgba(255, 173, 189, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 244, 246, 0.92) 100%);
}

.screenshot-card-badges {
  background:
    radial-gradient(circle at top right, rgba(255, 209, 117, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 250, 239, 0.92) 100%);
}

.screenshot-card-stats {
  background:
    radial-gradient(circle at top right, rgba(116, 201, 143, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 255, 248, 0.92) 100%);
}

.screenshot-phone {
  overflow: hidden;
  width: min(100%, 238px);
  margin: 0 auto;
  border-radius: 34px;
  background: #fbf7f2;
  border: 10px solid rgba(44, 28, 16, 0.88);
  box-shadow:
    0 22px 44px rgba(101, 58, 15, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.screenshot-image {
  width: 100%;
  aspect-ratio: 390 / 720;
  object-fit: cover;
  object-position: top center;
}

.screenshot-phone-study {
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.98) 0%, rgba(255, 239, 223, 0.94) 100%);
}

.screenshot-image-study {
  transform: scale(1.11);
  transform-origin: top center;
  object-position: center 8%;
  filter: saturate(1.02) contrast(1.01);
}

.screenshot-copy {
  display: grid;
  gap: 9px;
}

.screenshot-tag {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--primary-deep);
  background: rgba(255, 138, 42, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
}

.screenshot-copy h3 {
  margin: 0;
  color: var(--title);
  font-size: 1.26rem;
}

.screenshot-copy p {
  margin: 0;
  color: var(--text-soft);
}

.screenshot-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.screenshot-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 244, 230, 0.86);
  border: 1px solid rgba(137, 74, 19, 0.08);
  color: var(--title);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(242, 109, 13, 0.22);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
  width: 30px;
  background: linear-gradient(90deg, var(--primary), #ffb35f);
}

.preview-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 223, 170, 0.28), transparent 28%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(137, 74, 19, 0.1);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.preview-card:hover,
.preview-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(242, 109, 13, 0.16);
  box-shadow: 0 22px 42px rgba(101, 58, 15, 0.12);
}

.preview-card-large {
  grid-row: span 1;
}

.preview-media {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 244, 230, 0.8);
  border: 1px solid rgba(137, 74, 19, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.preview-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.01);
}

.preview-copy {
  display: grid;
  gap: 8px;
}

.preview-copy span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--primary-deep);
  background: rgba(255, 138, 42, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
}

.preview-copy h3 {
  margin: 0;
  color: var(--title);
  font-size: 1.25rem;
}

.preview-copy p {
  margin: 0;
  color: var(--text-soft);
}

.mini-phone {
  display: grid;
  gap: 14px;
  padding: 22px;
  min-height: 250px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 206, 139, 0.32), transparent 30%),
    linear-gradient(180deg, #fff9ef 0%, #ffffff 100%);
  border: 10px solid rgba(44, 28, 16, 0.86);
  box-shadow:
    0 18px 38px rgba(101, 58, 15, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.mini-phone-top {
  color: var(--title);
  font-weight: 900;
  text-align: center;
}

.mini-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 226, 191, 0.76);
}

.mini-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #ffc267);
}

.mini-task {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(137, 74, 19, 0.08);
  font-size: 0.9rem;
}

.mini-task strong {
  color: var(--title);
}

.mini-task.active {
  color: var(--title);
  background: rgba(255, 234, 206, 0.88);
}

.feature-showcase,
.company-grid,
.cta-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.showcase-list {
  display: grid;
  gap: 18px;
}

.showcase-item,
.timeline-item {
  position: relative;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(137, 74, 19, 0.08);
  box-shadow: var(--shadow-soft);
}

.showcase-item::before,
.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(180deg, var(--primary), #ffb867);
}

.showcase-panel {
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 244, 228, 0.86) 100%);
  border: 1px solid rgba(137, 74, 19, 0.08);
  box-shadow: var(--shadow-soft);
}

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

.capability-card {
  padding: 22px;
}

.capability-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.capability-order {
  display: inline-flex;
  color: var(--primary-deep);
  font-size: 0.88rem;
  font-weight: 900;
}

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: var(--icon-color, var(--primary-deep));
  background: linear-gradient(135deg, var(--icon-bg-start, rgba(255, 138, 42, 0.16)) 0%, var(--icon-bg-end, rgba(255, 222, 177, 0.78)) 100%);
  border: 1px solid var(--icon-border, rgba(137, 74, 19, 0.08));
  box-shadow:
    0 10px 18px rgba(101, 58, 15, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

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

.flow-panel {
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: 22px;
}

.flow-panel-top {
  display: grid;
  gap: 10px;
}

.flow-panel-top h3 {
  margin: 0;
  color: var(--title);
  font-size: 1.55rem;
}

.flow-panel-top p {
  margin: 0;
  color: var(--text-soft);
}

.flow-chip {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--primary-deep);
  background: rgba(255, 138, 42, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
}

.flow-steps-grid {
  display: grid;
  gap: 12px;
}

.flow-step-card {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(137, 74, 19, 0.08);
}

.flow-step-card span {
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.flow-step-card strong {
  color: var(--title);
}

.flow-step-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.timeline {
  display: grid;
  gap: 16px;
}

.company-card {
  padding: 34px;
}

.company-grid-compact {
  align-items: start;
}

.company-logo {
  width: 86px;
  height: 86px;
  padding: 8px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 246, 233, 0.94) 100%);
  border: 1px solid rgba(137, 74, 19, 0.1);
  box-shadow:
    0 18px 36px rgba(101, 58, 15, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tag-list span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 236, 214, 0.88);
  color: #8e4d0f;
  font-size: 0.88rem;
  font-weight: 700;
}

.company-note {
  margin-top: 24px;
}

.official-panel {
  padding: 28px;
}

.official-panel-top {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.official-panel-top h3 {
  margin: 0;
  color: var(--title);
  font-size: 1.55rem;
}

.official-panel-top p {
  margin: 0;
  color: var(--text-soft);
}

.official-panel .contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 20px;
}

.official-panel .contact-actions .btn {
  width: 100%;
  min-width: 0;
  padding: 0 16px;
}

.legal-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.legal-link-card {
  display: grid;
  gap: 6px;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 244, 230, 0.64);
  border: 1px solid rgba(137, 74, 19, 0.08);
}

.legal-link-card strong {
  color: var(--title);
}

.legal-link-card span {
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.5;
}

.compliance-card a,
.back-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary-deep);
  font-weight: 800;
}

.cta-section {
  color: #ffffff;
}

.cta-shell {
  padding: 38px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 206, 139, 0.3), transparent 26%),
    linear-gradient(135deg, #ff962d 0%, #f06b0d 100%);
  box-shadow: 0 26px 52px rgba(181, 88, 16, 0.26);
}

.cta-shell h2,
.cta-shell p,
.cta-shell .contact-row strong,
.cta-shell .contact-row span {
  color: #fff8f0;
}

.contact-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(137, 74, 19, 0.1);
}

.cta-shell .contact-row {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.contact-row:last-of-type {
  border-bottom: 0;
}

.site-footer {
  padding: 32px 0 28px;
}

.footer-grid,
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  padding: 4px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 246, 233, 0.94) 100%);
  border: 1px solid rgba(137, 74, 19, 0.1);
  box-shadow:
    0 12px 22px rgba(101, 58, 15, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.footer-brand strong,
.footer-links a {
  color: var(--title);
}

.footer-brand span,
.footer-bottom {
  color: var(--text-soft);
}

.footer-copy {
  max-width: 620px;
  margin: 18px 0 0;
}

.footer-links {
  display: grid;
  gap: 12px;
  min-width: 140px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(137, 74, 19, 0.1);
  font-size: 0.92rem;
}

.legal-page .site-header {
  position: relative;
}

.legal-main {
  padding: 36px 0 90px;
}

.legal-hero {
  max-width: 860px;
  margin: 0 auto 28px;
}

.legal-meta {
  margin-top: 16px;
}

.legal-shell {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.legal-card {
  padding: 28px;
}

.legal-card h2 {
  margin: 0 0 16px;
  font-size: 1.5rem;
}

.legal-card h3 {
  margin: 20px 0 10px;
  font-size: 1.08rem;
}

.legal-card p,
.legal-card li {
  margin: 0;
}

.legal-card ul,
.legal-card ol {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-card p + p,
.legal-card p + ul,
.legal-card ul + p,
.legal-card ol + p,
.legal-card h3 + p,
.legal-card h3 + ul,
.legal-card h3 + ol {
  margin-top: 12px;
}

.legal-footer {
  margin-top: 34px;
  text-align: center;
  color: var(--text-soft);
}

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

@keyframes mt-blink {
  0%,
  96%,
  100% {
    transform: scaleY(1);
  }
  98% {
    transform: scaleY(0.1);
  }
}

@keyframes mascotBreath {
  0%,
  100% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes mascotChew {
  0%,
  16%,
  100% {
    transform: translateY(0) scale(0.99) rotate(0deg);
  }
  22% {
    transform: translateY(1px) scaleX(1.03) scaleY(0.97) rotate(-1.2deg);
  }
  28% {
    transform: translateY(-1px) scaleX(0.98) scaleY(1.03) rotate(1deg);
  }
  34% {
    transform: translateY(1px) scaleX(1.02) scaleY(0.98) rotate(-0.8deg);
  }
  40% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  62% {
    transform: translateY(0) scale(1.01) rotate(0.4deg);
  }
}

@keyframes bubblePop {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  22% {
    transform: translateY(-3px) scale(1.03);
  }
  40% {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .feature-showcase,
  .company-grid,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    min-height: 560px;
    padding-right: 0;
  }

  .hero-device {
    transform: none;
  }

  .hero-access {
    max-width: none;
  }

  .floating-card-top {
    left: 14px;
  }

  .floating-card-bottom {
    right: 8px;
  }
}

@media (max-width: 900px) {
  .quick-nav {
    display: none;
  }

  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-top: 1px solid transparent;
  }

  .mobile-menu.open {
    max-height: 500px;
    border-top-color: rgba(137, 74, 19, 0.08);
  }

  .mobile-nav,
  .mobile-actions {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
  }

  .mobile-nav {
    padding: 18px 0 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .mobile-actions {
    padding: 8px 0 22px;
  }

  .cards-grid-3,
  .cards-grid-2,
  .preview-grid,
  .capability-grid,
  .hero-stats,
  .hero-access,
  .download-steps {
    grid-template-columns: 1fr;
  }

  .screenshot-track {
    grid-auto-columns: 100%;
    gap: 18px;
  }

  .preview-toolbar {
    align-items: flex-start;
    flex-direction: column;
    margin-top: -4px;
  }

  .legal-links-grid {
    grid-template-columns: 1fr;
  }

  .official-panel .contact-actions {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-bottom,
  .contact-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .site-header {
    backdrop-filter: blur(12px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    padding: 3px;
  }

  .brand-subtitle {
    font-size: 0.76rem;
  }

  .hero-section {
    padding-top: 30px;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-note {
    font-size: 0.9rem;
  }

  .hero-break {
    display: block;
  }

  .hero-slogan {
    width: 100%;
    padding: 14px 16px 16px;
    border-radius: 20px;
  }

  .hero-slogan strong {
    font-size: 1.08rem;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-visual::before {
    width: 280px;
    height: 280px;
    right: 0;
    bottom: 6px;
  }

  .hero-visual::after {
    width: 96px;
    height: 96px;
    top: 92px;
    right: 10px;
  }

  .hero-device {
    padding: 14px;
    border-radius: 30px;
  }

  .device-screen,
  .screenshot-card,
  .preview-card,
  .feature-card,
  .scenario-card,
  .compliance-card,
  .legal-card,
  .showcase-panel,
  .contact-panel,
  .company-card,
  .cta-shell {
    padding: 22px;
  }

  .floating-card {
    min-width: 0;
    width: 160px;
    padding: 12px 14px;
  }

  .floating-card-top {
    top: 28px;
    left: -2px;
  }

  .floating-card-bottom {
    right: -6px;
    bottom: 58px;
  }

  .hero-mascot-shell {
    width: 174px;
    right: -18px;
    bottom: 0;
  }

  .hero-mascot-stage {
    min-height: 148px;
  }

  .hero-mantou {
    width: 104px;
    height: 86px;
  }

  .mascot-bubble {
    top: -2px;
    right: -2px;
    padding: 7px 9px;
    border-radius: 14px 14px 14px 5px;
    font-size: 0.72rem;
  }

  .mascot-bubble span {
    font-size: 0.62rem;
  }

  .hero-access-card {
    padding: 14px 16px;
    border-radius: 20px;
  }

  .hero-access-card img {
    width: 74px;
    height: 74px;
  }

  .screenshot-phone {
    width: min(100%, 220px);
    border-width: 8px;
    border-radius: 28px;
  }

  .section {
    padding: 68px 0;
  }

  .cta-shell {
    border-radius: 28px;
  }

  .legal-main {
    padding: 24px 0 70px;
  }
}

@media (max-width: 1280px) {
  .quick-nav {
    right: 12px;
    transform: translateY(-50%) scale(0.94);
    transform-origin: right center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quick-nav-link,
  .carousel-control,
  .feature-card,
  .scenario-card,
  .compliance-card,
  .screenshot-card,
  .hero-access-card {
    transition: none;
  }

  .hero-mascot-shell,
  .hero-mantou,
  .mascot-bubble {
    animation: none;
  }
}

.download-main {
  overflow: hidden;
}

.download-hero-section {
  padding-top: 44px;
}

.download-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 48px;
  align-items: center;
}

.download-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.download-step {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(137, 74, 19, 0.1);
  box-shadow: var(--shadow-soft);
}

.download-step span {
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.download-step strong {
  color: var(--title);
}

.download-step small {
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.status-online {
  background: rgba(116, 201, 143, 0.16);
  color: #2e8a4b;
  border-color: rgba(46, 138, 75, 0.12);
}

.status-wait {
  background: rgba(255, 211, 95, 0.22);
  color: #8b6402;
  border-color: rgba(139, 100, 2, 0.12);
}

.status-plan {
  background: rgba(255, 138, 42, 0.16);
  color: var(--primary-deep);
  border-color: rgba(242, 109, 13, 0.12);
}

@media (max-width: 1100px) {
  .download-hero-grid {
    grid-template-columns: 1fr;
  }
}

