:root {
  --bg: #fffaf6;
  --bg-soft: #f5fbff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-muted: #f6f7fb;
  --text: #101828;
  --text-soft: #516173;
  --line: rgba(16, 24, 40, 0.08);
  --line-strong: rgba(16, 24, 40, 0.14);
  --primary: #ff7847;
  --secondary: #258dff;
  --primary-soft: rgba(255, 120, 71, 0.12);
  --secondary-soft: rgba(37, 141, 255, 0.12);
  --shadow: 0 24px 70px rgba(34, 77, 122, 0.12);
  --shadow-soft: 0 14px 36px rgba(24, 58, 94, 0.09);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 48px));
  --font-sans: "MiSans", "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(255, 219, 203, 0.55), transparent 38%),
    radial-gradient(circle at top right, rgba(199, 227, 255, 0.58), transparent 30%),
    linear-gradient(180deg, #fffaf6 0%, #ffffff 45%, #f8fbff 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(16, 24, 40, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

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

.brand__mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 0 14px 30px rgba(37, 141, 255, 0.22);
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__title {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
}

.brand__subtitle {
  color: var(--text-soft);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  color: var(--text);
  background: rgba(16, 24, 40, 0.04);
}

.nav-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav__list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.site-nav__list li {
  margin: 0;
}

.site-nav__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav__list a:hover,
.site-nav__list .current a,
.site-nav__list .active a {
  color: var(--text);
  background: rgba(16, 24, 40, 0.05);
}

.site-nav__list li:last-child a {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #ff5e7b 100%);
  box-shadow: 0 12px 24px rgba(255, 120, 71, 0.24);
}

.hero {
  padding: 44px 0 18px;
}

.hero__frame {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.4)),
    radial-gradient(circle at left top, rgba(255, 192, 168, 0.35), transparent 28%),
    radial-gradient(circle at right top, rgba(124, 187, 255, 0.32), transparent 26%),
    linear-gradient(120deg, #fffaf6 0%, #eef7ff 52%, #ddecff 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__frame::before,
.hero__frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero__frame::before {
  width: 500px;
  height: 500px;
  top: -220px;
  right: -160px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
}

.hero__frame::after {
  width: 280px;
  height: 280px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(255, 214, 196, 0.48), rgba(255, 214, 196, 0));
}

.hero__slides {
  position: relative;
  min-height: 650px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 30px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.42s ease, transform 0.42s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 14px;
}

.hero-copy__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.hero-copy h1 {
  margin: 0;
  max-width: 10em;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 18px;
}

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

.hero-actions a,
.hero-actions button {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.hero-actions__primary {
  color: #fff;
  background: linear-gradient(135deg, var(--secondary) 0%, #4da1ff 100%);
  box-shadow: 0 16px 28px rgba(37, 141, 255, 0.24);
}

.hero-actions__ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 24, 40, 0.06);
}

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

.hero-panel,
.hero-floating,
.hero-chip,
.hero-wave {
  position: absolute;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.hero-panel--main {
  inset: 68px 10px 28px 72px;
  overflow: hidden;
}

.hero-panel--search {
  top: 34px;
  left: 0;
  right: 66px;
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.hero-mic,
.hero-face,
.hero-send {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.hero-mic,
.hero-face {
  width: 46px;
  height: 46px;
  color: var(--text-soft);
  background: var(--surface-muted);
}

.hero-send {
  width: 72px;
  height: 52px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #78cd49 0%, #5cb338 100%);
}

.hero-input {
  flex: 1;
  min-height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  border-radius: 18px;
  color: var(--text);
  font-size: 26px;
  font-weight: 700;
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
}

.hero-panel__tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-top: 18px;
  font-weight: 700;
  color: var(--text-soft);
}

.hero-panel__tabs .is-current {
  color: var(--primary);
}

.hero-panel__control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 24px 28px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--text-soft);
  font-weight: 700;
}

.hero-wave {
  left: 28px;
  right: 28px;
  top: 212px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-wave span {
  width: 4px;
  margin: 0 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7d4f 0%, #ff5da8 45%, #2e8eff 100%);
  opacity: 0.9;
}

.hero-wave span:nth-child(1),
.hero-wave span:nth-child(11) { height: 24px; }
.hero-wave span:nth-child(2),
.hero-wave span:nth-child(10) { height: 32px; }
.hero-wave span:nth-child(3),
.hero-wave span:nth-child(9) { height: 44px; }
.hero-wave span:nth-child(4),
.hero-wave span:nth-child(8) { height: 58px; }
.hero-wave span:nth-child(5),
.hero-wave span:nth-child(7) { height: 80px; }
.hero-wave span:nth-child(6) { height: 114px; }

.hero-panel__foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  text-align: center;
  color: var(--text-soft);
  font-size: 18px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(255, 120, 71, 0.2);
}

.hero-chip--primary {
  left: 60px;
  top: 198px;
  background: linear-gradient(135deg, #ffb143 0%, #ff6a38 100%);
}

.hero-chip--secondary {
  right: 4px;
  bottom: 98px;
  background: linear-gradient(135deg, #5bc4ff 0%, #2b8cff 100%);
}

.hero-floating {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.hero-floating--left {
  left: 16px;
  top: 116px;
  transform: rotate(-14deg);
}

.hero-floating--right {
  right: 26px;
  top: 164px;
  transform: rotate(-22deg);
}

.hero-floating--bottom {
  right: 116px;
  bottom: 34px;
  transform: rotate(7deg);
}

.hero-floating__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #49a4ff;
  font-weight: 800;
  font-size: 26px;
}

.hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 24, 40, 0.16);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-dots button.is-active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scale(1.1);
}

.section {
  padding: 54px 0;
}

.section-head {
  margin-bottom: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-head__eyebrow {
  margin: 0 0 10px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-head p,
.page-hero p {
  margin: 12px 0 0;
  color: var(--text-soft);
  max-width: 760px;
}

.feature-stack {
  display: grid;
  gap: 26px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.95fr);
  gap: 34px;
  align-items: center;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.feature-row:nth-child(2) {
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 0.95fr);
}

.feature-row:nth-child(2) .feature-copy {
  order: 2;
}

.feature-row:nth-child(2) .feature-visual {
  order: 1;
}

.feature-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.15;
}

.feature-copy p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 18px;
}

.feature-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.feature-stat strong {
  display: block;
  color: #ff646d;
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1;
}

.feature-stat span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 16px;
}

.feature-visual {
  position: relative;
  min-height: 360px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 212, 193, 0.5), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(184, 221, 255, 0.55), transparent 20%),
    linear-gradient(135deg, rgba(255, 249, 246, 0.95), rgba(225, 241, 255, 0.96));
}

.feature-visual__card,
.feature-visual__bubble,
.feature-visual__bar {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.feature-visual__card {
  border-radius: 24px;
}

.feature-visual__bar {
  height: 18px;
  border-radius: 999px;
}

.feature-visual__bubble {
  border-radius: 20px;
}

.feature-visual--one .feature-visual__card:nth-child(1) {
  left: 56px;
  top: 44px;
  width: 174px;
  height: 104px;
}

.feature-visual--one .feature-visual__card:nth-child(2) {
  left: 128px;
  top: 144px;
  width: 312px;
  height: 112px;
}

.feature-visual--one .feature-visual__card:nth-child(3) {
  left: 98px;
  top: 242px;
  width: 242px;
  height: 88px;
}

.feature-visual--one .feature-visual__bar:nth-child(4) {
  left: 78px;
  top: 74px;
  width: 100px;
}

.feature-visual--one .feature-visual__bar:nth-child(5) {
  left: 158px;
  top: 182px;
  width: 164px;
  background: linear-gradient(135deg, rgba(255, 120, 71, 0.92), rgba(255, 120, 71, 0.2));
}

.feature-visual--one .feature-visual__bar:nth-child(6) {
  left: 158px;
  top: 214px;
  width: 208px;
  background: linear-gradient(135deg, rgba(37, 141, 255, 0.92), rgba(37, 141, 255, 0.24));
}

.feature-visual--one .feature-visual__bubble:nth-child(7) {
  right: 34px;
  bottom: 36px;
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, rgba(91, 196, 255, 0.92), rgba(43, 140, 255, 0.78));
}

.feature-visual--two .feature-visual__card:nth-child(1) {
  left: 58px;
  top: 42px;
  width: 320px;
  height: 186px;
}

.feature-visual--two .feature-visual__card:nth-child(2) {
  left: 156px;
  top: 94px;
  width: 210px;
  height: 210px;
}

.feature-visual--two .feature-visual__card:nth-child(3) {
  left: 40px;
  bottom: 42px;
  width: 96px;
  height: 96px;
}

.feature-visual--two .feature-visual__bar:nth-child(4) {
  left: 88px;
  top: 92px;
  width: 188px;
}

.feature-visual--two .feature-visual__bar:nth-child(5) {
  left: 88px;
  top: 126px;
  width: 148px;
}

.feature-visual--two .feature-visual__bar:nth-child(6) {
  left: 192px;
  top: 150px;
  width: 112px;
  background: linear-gradient(135deg, rgba(255, 120, 71, 0.88), rgba(255, 120, 71, 0.2));
}

.feature-visual--two .feature-visual__bubble:nth-child(7) {
  right: 36px;
  bottom: 34px;
  width: 128px;
  height: 128px;
  background: linear-gradient(135deg, rgba(255, 194, 81, 0.92), rgba(255, 120, 71, 0.8));
}

.feature-visual--three .feature-visual__card:nth-child(1) {
  left: 64px;
  top: 44px;
  width: 298px;
  height: 258px;
}

.feature-visual--three .feature-visual__card:nth-child(2) {
  left: 98px;
  top: 84px;
  width: 230px;
  height: 48px;
}

.feature-visual--three .feature-visual__card:nth-child(3) {
  right: 34px;
  top: 82px;
  width: 102px;
  height: 102px;
}

.feature-visual--three .feature-visual__bar:nth-child(4) {
  left: 120px;
  top: 174px;
  width: 186px;
  background: linear-gradient(135deg, rgba(255, 120, 71, 0.92), rgba(37, 141, 255, 0.24));
}

.feature-visual--three .feature-visual__bar:nth-child(5) {
  left: 120px;
  top: 214px;
  width: 146px;
  background: linear-gradient(135deg, rgba(37, 141, 255, 0.92), rgba(37, 141, 255, 0.24));
}

.feature-visual--three .feature-visual__bar:nth-child(6) {
  left: 120px;
  top: 254px;
  width: 208px;
}

.feature-visual--three .feature-visual__bubble:nth-child(7) {
  right: 62px;
  bottom: 34px;
  width: 128px;
  height: 74px;
  background: linear-gradient(135deg, rgba(91, 196, 255, 0.92), rgba(43, 140, 255, 0.78));
}

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

.feature-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.feature-card__icon {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 120, 71, 0.12), rgba(37, 141, 255, 0.12));
}

.feature-card h3 {
  margin: 18px 0 10px;
  font-size: 28px;
  line-height: 1.18;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
}

.page-hero {
  padding: 52px 0 8px;
}

.page-hero__frame {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.42)),
    linear-gradient(120deg, #fffaf6 0%, #edf7ff 100%);
  box-shadow: var(--shadow-soft);
}

.page-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.88);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.article-layout {
  display: grid;
  gap: 24px;
}

.article-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.article-cover {
  overflow: hidden;
  border-radius: 26px;
  margin-top: 18px;
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.article-meta span,
.article-meta a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.04);
}

.article-card h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.article-content {
  margin-top: 30px;
  color: #1f2937;
  font-size: 18px;
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  line-height: 1.25;
  margin: 1.8em 0 0.7em;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote {
  margin: 0 0 1.1em;
}

.article-content img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.article-content blockquote {
  padding: 18px 20px;
  border-left: 4px solid var(--secondary);
  border-radius: 0 18px 18px 0;
  background: rgba(37, 141, 255, 0.06);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-tags a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(16, 24, 40, 0.05);
}

.article-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.article-nav a,
.article-nav span {
  min-height: 120px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.article-nav small {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.news-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.news-card__thumb {
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 233, 223, 0.8), rgba(223, 240, 255, 0.8));
}

.news-card__thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card:hover .news-card__thumb img {
  transform: scale(1.03);
}

.news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}

.news-card__meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.05);
}

.news-card__title {
  margin: 16px 0 12px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.news-card__title a:hover {
  color: var(--secondary);
}

.news-card__excerpt {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
}

.news-card__footer {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.news-card__footer a {
  color: var(--secondary);
}

.pager-wrap,
.pagebar {
  margin-top: 28px;
}

.pagebar,
.pagebar ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.pagebar a,
.pagebar span {
  min-width: 46px;
  min-height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-weight: 700;
}

.pagebar .now-page,
.pagebar .current,
.pagebar .active,
.pagebar strong {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-color: transparent;
}

.comments-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.comments-card h2 {
  margin: 0 0 18px;
  font-size: 34px;
}

.comment-list {
  display: grid;
  gap: 16px;
}

.comment-item {
  padding: 20px;
  border-radius: 24px;
  background: rgba(16, 24, 40, 0.03);
}

.comment-item__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.comment-item__avatar img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-item__meta strong {
  display: block;
  font-size: 17px;
}

.comment-item__meta span {
  color: var(--text-soft);
  font-size: 14px;
}

.comment-item__body {
  margin-top: 14px;
  color: #1f2937;
}

.comment-item__actions {
  margin-top: 10px;
}

.comment-item__actions a {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
}

.comment-item .comment-list {
  margin-top: 14px;
  padding-left: 20px;
  border-left: 1px dashed var(--line-strong);
}

.comment-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

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

.comment-field label {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.comment-field input,
.comment-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 18px;
  outline: 0;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-field input:focus,
.comment-field textarea:focus {
  border-color: rgba(37, 141, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 141, 255, 0.12);
}

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

.comment-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 0 16px 28px rgba(37, 141, 255, 0.24);
}

.empty-state {
  padding: 68px 30px;
  text-align: center;
  border: 1px dashed rgba(16, 24, 40, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
}

.empty-state h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 1;
}

.empty-state p {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--text-soft);
}

.empty-state__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.empty-state__actions a {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
}

.empty-state__actions .is-primary {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.site-footer {
  margin-top: 32px;
  padding: 56px 0 70px;
}

.site-footer__frame {
  display: grid;
  gap: 26px;
  padding: 32px;
  border-radius: 34px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, #1b212f 0%, #111824 100%);
  box-shadow: var(--shadow);
}

.site-footer__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__brand {
  max-width: 620px;
}

.site-footer__brand h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
}

.site-footer__brand p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__links a {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.site-footer__meta a {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1100px) {
  .hero-slide,
  .feature-row,
  .feature-row:nth-child(2) {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(2) .feature-copy,
  .feature-row:nth-child(2) .feature-visual {
    order: initial;
  }

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

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

@media (max-width: 860px) {
  :root {
    --container: min(100vw - 32px, 100%);
  }

  .site-header__inner {
    min-height: 76px;
  }

  .brand__title {
    font-size: 22px;
  }

  .brand__subtitle {
    font-size: 13px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: var(--shadow-soft);
  }

  .site-nav__list a {
    justify-content: flex-start;
  }

  .hero__frame {
    padding: 18px;
    border-radius: 28px;
  }

  .hero__slides {
    min-height: 760px;
  }

  .hero-slide {
    gap: 18px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

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

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

  .hero-panel--main {
    inset: 88px 10px 18px 28px;
  }

  .hero-panel--search {
    right: 10px;
  }

  .hero-input {
    font-size: 18px;
  }

  .section,
  .site-footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .feature-grid,
  .news-grid,
  .comment-grid,
  .article-nav {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .feature-card,
  .article-card,
  .comments-card {
    padding: 22px;
    border-radius: 24px;
  }

  .news-card__title {
    font-size: 26px;
  }

  .site-footer__top {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero__slides {
    min-height: 820px;
  }

  .hero-panel--search {
    min-height: 84px;
    gap: 10px;
    padding: 14px;
  }

  .hero-mic,
  .hero-face {
    width: 38px;
    height: 38px;
  }

  .hero-send {
    width: 60px;
    height: 46px;
    border-radius: 14px;
  }

  .hero-input {
    min-height: 48px;
    padding: 0 14px;
    font-size: 16px;
  }

  .hero-panel__tabs {
    gap: 18px;
    font-size: 14px;
  }

  .hero-chip {
    padding: 10px 14px;
    font-size: 14px;
  }

  .section-head h2,
  .page-hero h1,
  .feature-copy h3,
  .article-card h1 {
    letter-spacing: -0.02em;
  }

  .article-content {
    font-size: 17px;
  }
}


/* === 官网化图片/视觉优化补丁：让首页视觉卡片更接近官方输入法页面 === */
.hero__frame {
  padding: 0;
  border-radius: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,.72), rgba(255,255,255,0) 24%),
    linear-gradient(110deg, #fff8f3 0%, #eef7ff 42%, #d8efff 100%);
  box-shadow: none;
}

.hero__slides {
  min-height: 720px;
}

.hero-slide {
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
  padding: 66px 0 92px;
}

.hero-copy {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-copy__eyebrow,
.hero-copy p,
.hero-actions,
.hero-tags {
  display: none;
}

.hero-copy h1 {
  max-width: none;
  font-size: clamp(40px, 5.6vw, 68px);
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #141414;
}

.hero-copy h1::after {
  content: "🎙";
  display: inline-block;
  margin-left: 14px;
  color: #ff7747;
  font-size: .68em;
  transform: translateY(-4px);
}

.hero-visual {
  width: min(760px, 92vw);
  min-height: 360px;
  margin-top: 56px;
  filter: drop-shadow(0 28px 52px rgba(80, 145, 205, .14));
}

.hero-panel--search {
  z-index: 8;
  top: 0;
  left: 50%;
  right: auto;
  width: min(620px, 92vw);
  min-height: 70px;
  transform: translateX(-50%);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(35,86,132,.12);
  box-shadow: 0 14px 28px rgba(70,120,180,.18);
}

.hero-mic,
.hero-face {
  width: 48px;
  height: 48px;
  border: 2px solid #a6b1bd;
  background: #f8fbff;
  color: transparent;
  position: relative;
}

.hero-mic::before {
  content: "";
  width: 14px;
  height: 20px;
  border: 3px solid #7c8a97;
  border-radius: 999px;
}

.hero-face::before {
  content: "☺";
  color: #7c8a97;
  font-size: 30px;
  line-height: 1;
}

.hero-input {
  min-height: 48px;
  border-radius: 4px;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  background: #fff;
  box-shadow: inset 0 -2px 0 rgba(122, 210, 96, .9);
}

.hero-send {
  width: 72px;
  height: 48px;
  border-radius: 6px;
  font-size: 18px;
  background: #32b51c;
  box-shadow: 0 8px 14px rgba(50,181,28,.18);
}

.hero-panel--main {
  z-index: 5;
  width: min(430px, 74vw);
  height: 310px;
  inset: 64px auto auto 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,251,255,.84));
  border: 1px solid rgba(83,132,178,.12);
  overflow: visible;
  box-shadow: 0 24px 52px rgba(72,126,190,.15);
}

.hero-panel--main::before {
  content: "";
  position: absolute;
  left: -138px;
  bottom: 52px;
  width: 150px;
  height: 82px;
  background: linear-gradient(145deg, #6fc6ff 0%, #4aaef4 56%, #268de6 100%);
  clip-path: polygon(0 54%, 100% 0, 64% 78%, 40% 62%, 31% 100%);
  filter: drop-shadow(0 16px 18px rgba(54, 151, 230, .26));
  transform: rotate(-8deg);
}

.hero-panel--main::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: 18px;
  width: 120px;
  height: 120px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92) 0 44%, rgba(255,138,76,.92) 45% 58%, rgba(255,255,255,.78) 59% 100%);
  box-shadow: 0 18px 34px rgba(71, 151, 232, .16);
}

.hero-panel__tabs {
  height: 48px;
  align-items: center;
  padding-top: 0;
  gap: 42px;
  font-size: 15px;
  background: rgba(240,246,252,.9);
  border-bottom: 1px solid rgba(45,91,135,.08);
}

.hero-panel__tabs .is-current {
  color: #ff7b39;
  position: relative;
}

.hero-panel__tabs .is-current::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: #ff7b39;
  transform: translateX(-50%);
}

.hero-panel__control {
  margin: 18px 0 0 -56px;
  padding: 12px 22px;
  border-radius: 999px;
  color: #fff;
  font-size: 17px;
  background: linear-gradient(135deg, #ffb044, #ff6d39);
  box-shadow: 0 12px 20px rgba(255,112,62,.22);
}

.hero-wave {
  top: 118px;
  height: 122px;
}

.hero-wave span {
  width: 3px;
  margin: 0 4px;
  background: linear-gradient(180deg, #ff8243 0%, #ff3d9b 52%, #ff7a34 100%);
}

.hero-panel__foot {
  bottom: 18px;
  font-size: 15px;
  color: #8793a0;
}

.hero-chip {
  z-index: 6;
  padding: 12px 20px;
  font-size: 18px;
  border-radius: 999px;
}

.hero-chip--primary {
  left: 76px;
  top: 156px;
}

.hero-chip--secondary {
  right: 70px;
  bottom: 2px;
  min-width: 80px;
  height: 62px;
  justify-content: center;
  border-radius: 10px;
}

.hero-floating {
  opacity: .9;
  box-shadow: none;
}

.hero-floating--left {
  z-index: 1;
  width: 138px;
  height: 100px;
  left: 16px;
  top: 18px;
  border-radius: 22px;
  background: rgba(231,241,253,.72);
}

.hero-floating--left::after {
  content: "•••";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #c7dcf2;
  font-size: 34px;
  letter-spacing: 5px;
}

.hero-floating--right {
  width: 58px;
  height: 58px;
  right: 48px;
  top: 84px;
  border-radius: 8px;
  background: #ff7544;
}

.hero-floating--bottom {
  z-index: 6;
  right: 132px;
  bottom: -12px;
  width: 88px;
  height: 74px;
  border-radius: 10px;
  background: linear-gradient(180deg, #e6f6ff, #75c8ff);
}

.hero-floating__label {
  color: #fff;
  font-size: 34px;
  letter-spacing: .02em;
}

.hero-dots {
  bottom: 116px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  opacity: .55;
}

.hero-dots button.is-active {
  background: #ff664b;
  opacity: 1;
}

.feature-visual {
  min-height: 320px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 74% 20%, rgba(255,255,255,.88), rgba(255,255,255,0) 22%),
    linear-gradient(135deg, #eef8ff 0%, #ffffff 46%, #fff2ea 100%);
  border: 1px solid rgba(63,128,190,.12);
  overflow: hidden;
}

.feature-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46px;
  width: 280px;
  height: 172px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(247,251,255,.94) 0 42px, rgba(255,255,255,.95) 43px 100%),
    #fff;
  transform: translateX(-50%);
  box-shadow: 0 22px 44px rgba(60,120,190,.14);
}

.feature-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 128px;
  width: 156px;
  height: 78px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(90deg, #ff7449 0 4px, transparent 4px 12px);
  clip-path: polygon(0 44%, 12% 42%, 20% 50%, 28% 36%, 36% 58%, 44% 12%, 52% 100%, 60% 30%, 68% 58%, 76% 44%, 84% 47%, 100% 45%, 100% 54%, 0 54%);
}

.feature-visual__card {
  position: absolute;
  width: 86px;
  height: 68px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 34px rgba(70,130,190,.13);
}

.feature-visual__card:nth-child(1) { left: 42px; top: 74px; transform: rotate(-12deg); }
.feature-visual__card:nth-child(2) { right: 44px; top: 82px; transform: rotate(14deg); }
.feature-visual__card:nth-child(3) { right: 78px; bottom: 58px; background: linear-gradient(135deg,#8bd6ff,#3da2ff); }

.feature-visual__bar {
  position: absolute;
  left: 82px;
  right: auto;
  bottom: 44px;
  width: 168px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,130,76,.18);
}

.feature-visual__bar:nth-of-type(5) { bottom: 70px; width: 220px; background: rgba(55,151,255,.14); }
.feature-visual__bar:nth-of-type(6) { bottom: 96px; width: 128px; background: rgba(255,130,76,.16); }

.feature-visual__bubble {
  position: absolute;
  left: 70px;
  top: 168px;
  width: 120px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg,#ffb044,#ff7142);
  box-shadow: 0 16px 28px rgba(255,112,62,.22);
}

.news-card__thumb {
  background:
    radial-gradient(circle at 72% 26%, rgba(255,255,255,.88), rgba(255,255,255,0) 28%),
    linear-gradient(135deg, #e9f7ff 0%, #fff 48%, #fff2eb 100%);
}

.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}

.news-card:hover .news-card__thumb img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

@media (max-width: 860px) {
  .hero__slides { min-height: 610px; }
  .hero-slide { padding: 48px 0 76px; }
  .hero-visual { transform: scale(.86); transform-origin: top center; margin-top: 38px; }
  .hero-dots { bottom: 72px; }
  .hero-panel--main::before,
  .hero-panel--main::after { opacity: .75; }
}

@media (max-width: 560px) {
  .hero__slides { min-height: 560px; }
  .hero-copy h1 { font-size: 34px; }
  .hero-visual { width: 110vw; transform: scale(.72); }
  .hero-panel--main::before,
  .hero-panel--main::after,
  .hero-floating--left,
  .hero-floating--right { display: none; }
}

/* Sogou official-like header + full-width image carousel */
:root { --sogou-orange:#ff5b2e; --sogou-red:#ff666b; }
body { background:#fff; }
.sogou-header { position:sticky; top:0; z-index:60; background:#fff; border-bottom:1px solid rgba(16,24,40,.06); backdrop-filter:none; }
.sogou-header__inner { min-height:92px; max-width:1440px; width:min(1440px, calc(100vw - 80px)); }
.sogou-brand { gap:10px; }
.sogou-brand__mark { width:44px; height:44px; border-radius:12px; background:var(--sogou-orange); box-shadow:none; transform:rotate(-10deg); font-size:30px; font-weight:900; font-style:italic; }
.sogou-brand__title { color:var(--sogou-orange); font-size:32px; font-weight:700; line-height:1; white-space:nowrap; }
.sogou-brand__dot { color:var(--sogou-orange); font-size:24px; line-height:1; margin:0 4px 0 2px; }
.sogou-brand__subtitle { color:#202328; font-size:22px; font-weight:400; max-width:none; overflow:visible; text-overflow:clip; white-space:nowrap; }
.sogou-nav__list { gap:28px; }
.sogou-nav__list a { min-height:56px; padding:0 6px; border-radius:0; color:#14171d; font-size:20px; font-weight:400; background:transparent!important; box-shadow:none!important; }
.sogou-nav__list a:hover { color:var(--sogou-orange); }
.sogou-nav__contact a { min-width:150px; padding:0 26px!important; border-radius:8px!important; color:#161a20!important; background:#ff666b!important; }
.sogou-nav__contact a:hover { color:#fff!important; background:#ff5b61!important; }
.sogou-hero { padding:0; margin:0; background:#eaf6ff; }
.sogou-hero__viewport { position:relative; width:100%; height:620px; overflow:hidden; background:#eaf6ff; }
.sogou-hero__slides { position:relative; width:100%; height:100%; min-height:0; }
.sogou-slide { position:absolute; inset:0; opacity:0; transform:none; transition:opacity .45s ease; pointer-events:none; }
.sogou-slide.is-active { opacity:1; pointer-events:auto; }
.sogou-slide img { width:100%; height:100%; object-fit:cover; object-position:center; }
.sogou-hero__dots { position:absolute; left:50%; bottom:24px; transform:translateX(-50%); z-index:5; display:flex; gap:12px; }
.sogou-hero__dots button { width:10px; height:10px; padding:0; border:0; border-radius:999px; background:#9aa4ad; opacity:.75; cursor:pointer; }
.sogou-hero__dots button.is-active { width:42px; background:#ff6d39; opacity:1; }
.sogou-hero__arrow { position:absolute; top:50%; z-index:6; width:54px; height:54px; margin-top:-27px; border:0; border-radius:50%; background:rgba(255,255,255,.86); box-shadow:0 8px 22px rgba(18,52,86,.10); cursor:pointer; }
.sogou-hero__arrow::before { content:""; position:absolute; left:50%; top:50%; width:13px; height:13px; border-top:3px solid #9ca3af; border-right:3px solid #9ca3af; }
.sogou-hero__arrow--prev { left:76px; }
.sogou-hero__arrow--prev::before { transform:translate(-35%,-50%) rotate(-135deg); }
.sogou-hero__arrow--next { right:76px; }
.sogou-hero__arrow--next::before { transform:translate(-65%,-50%) rotate(45deg); }
.sogou-hero + .section { padding-top:44px; }
.news-card__thumb { background:#eaf6ff; }
@media (max-width:1200px){.sogou-header__inner{width:min(100%, calc(100vw - 40px));}.sogou-brand__title{font-size:28px}.sogou-brand__subtitle{font-size:18px}.sogou-nav__list{gap:18px}.sogou-hero__viewport{height:52vw;min-height:430px}.sogou-hero__arrow--prev{left:28px}.sogou-hero__arrow--next{right:28px}}
@media (max-width:860px){.sogou-header__inner{min-height:72px}.sogou-brand__mark{width:38px;height:38px;font-size:25px}.sogou-brand__title{font-size:24px}.sogou-brand__dot,.sogou-brand__subtitle{display:none}.sogou-nav{position:absolute;left:20px;right:20px;top:74px;display:none;padding:14px;background:#fff;border:1px solid rgba(16,24,40,.08);border-radius:18px;box-shadow:0 18px 50px rgba(16,24,40,.12)}.sogou-nav.is-open{display:block}.sogou-nav__list{display:grid;gap:6px}.sogou-nav__list a{justify-content:flex-start;font-size:16px;min-height:46px;padding:0 14px!important}.sogou-nav__contact a{min-width:0}.nav-toggle{display:block}.sogou-hero__viewport{height:58vw;min-height:310px}.sogou-hero__arrow{width:42px;height:42px}.sogou-hero__arrow--prev{left:14px}.sogou-hero__arrow--next{right:14px}.sogou-hero__dots{bottom:14px}}
@media (max-width:560px){.sogou-hero__viewport{height:62vw;min-height:250px}.sogou-hero__arrow{display:none}.sogou-hero__dots button{width:8px;height:8px}.sogou-hero__dots button.is-active{width:30px}}

/* === Fixed real carousel: only one banner is visible at a time === */
.sogou-hero, .sogou-hero * { box-sizing: border-box; }
.sogou-hero { display:block !important; width:100% !important; padding:0 !important; margin:0 !important; overflow:hidden !important; background:#eaf6ff !important; }
.sogou-hero__viewport { position:relative !important; width:100% !important; height:620px !important; overflow:hidden !important; background:#eaf6ff !important; }
.sogou-hero__slides { position:relative !important; width:100% !important; height:100% !important; overflow:hidden !important; }
.sogou-slide { display:block !important; position:absolute !important; inset:0 !important; width:100% !important; height:100% !important; opacity:0 !important; visibility:hidden !important; transform:none !important; transition:opacity .45s ease, visibility .45s ease !important; pointer-events:none !important; }
.sogou-slide.is-active { opacity:1 !important; visibility:visible !important; z-index:2 !important; pointer-events:auto !important; }
.sogou-slide img { display:block !important; width:100% !important; height:100% !important; object-fit:cover !important; object-position:center center !important; margin:0 !important; padding:0 !important; border:0 !important; }
.sogou-hero__dots { position:absolute !important; left:50% !important; bottom:24px !important; transform:translateX(-50%) !important; z-index:9 !important; display:flex !important; align-items:center !important; justify-content:center !important; gap:12px !important; width:auto !important; }
.sogou-hero__dots button { display:block !important; width:10px !important; height:10px !important; min-width:0 !important; min-height:0 !important; padding:0 !important; margin:0 !important; border:0 !important; border-radius:999px !important; background:#9aa4ad !important; opacity:.75 !important; cursor:pointer !important; }
.sogou-hero__dots button.is-active { width:42px !important; background:#ff6d39 !important; opacity:1 !important; }
@media (max-width:1200px){.sogou-hero__viewport{height:52vw !important; min-height:430px !important;}}
@media (max-width:860px){.sogou-hero__viewport{height:58vw !important; min-height:310px !important;}}
@media (max-width:560px){.sogou-hero__viewport{height:62vw !important; min-height:250px !important;}.sogou-hero__arrow{display:none !important;}}
