/* ============================================
   海纳AI · hina.com 首页样式
   主色系（与 hina.com 官网一致）：
     蓝紫主色 #4B64FF  亮蓝 #216FFF  中蓝 #518EFF
     辅助黄色 #FFCD27  橙 #FAAB3C
   ============================================ */

/* ---------- 变量 ---------- */
:root {
  --c-brand: #4B64FF;
  --c-brand-dark: #3648D9;
  --c-brand-alt: #216FFF;
  --c-brand-mid: #518EFF;
  --c-brand-light: #EFF4FF;
  --c-accent: #FFCD27;
  --c-accent-2: #FAAB3C;
  --c-ink-0: #1A1A2E;
  --c-ink-1: #2C2C2C;
  --c-ink-2: #474747;
  --c-ink-3: #6F6F6F;
  --c-ink-4: #8E8E8E;
  --c-ink-5: #A0A0A0;
  --c-line: #E6E8F2;
  --c-line-soft: #F1F3F8;
  --c-bg: #FFFFFF;
  --c-bg-soft: #F7F8FA;
  --c-bg-dark: #1A1D36;
  --grad-brand: linear-gradient(135deg, #4B64FF 0%, #216FFF 100%);
  --grad-text: linear-gradient(135deg, #4B64FF 0%, #216FFF 100%);
  --grad-dark: linear-gradient(180deg, #1A1D36 0%, #20254A 100%);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;
  --sh-sm: 0 1px 2px rgba(75, 100, 255, 0.04);
  --sh-md: 0 4px 16px rgba(75, 100, 255, 0.08);
  --sh-lg: 0 12px 40px rgba(75, 100, 255, 0.12);
  --sh-xl: 0 24px 60px rgba(75, 100, 255, 0.18);
  --ease: cubic-bezier(.2,.8,.2,1);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --container: 1200px;
  --nav-container: 1240px;
  --nav-h: 64px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-ink-1);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ 公告栏 ============ */
.announce-bar {
  background: var(--c-bg-dark);
  color: #D1DBF0;
  font-size: 13px;
  padding: 8px 0;
}
.announce-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.announce-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #00E5A5;
  box-shadow: 0 0 8px rgba(0, 229, 165, 0.6);
}
.announce-link {
  color: #7FB3FF;
  font-weight: 500;
  margin-left: 4px;
  transition: opacity .2s;
}
.announce-link:hover { opacity: .8; }

/* ============ 导航 ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-line-soft);
}
.nav-container {
  width: 100%;
  max-width: var(--nav-container);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-brand { flex-shrink: 0; }
.nav-logo { height: 30px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-ink-2);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-item:hover { color: var(--c-brand); background: var(--c-brand-light); }
.nav-caret { opacity: .6; transition: transform .2s; }
.has-dropdown:hover .nav-caret { transform: rotate(180deg); }

/* 下拉 */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 320px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all .2s var(--ease);
  z-index: 50;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-wide {
  min-width: 440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--c-ink-1);
  transition: background .15s;
}
.dropdown-item:hover { background: var(--c-bg-soft); }
.dropdown-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.dropdown-icon.blue { background: linear-gradient(135deg, #E8EFFE, #DCE7FF); }
.dropdown-icon.cyan { background: linear-gradient(135deg, #E0F6FD, #CDEAFE); }
.dropdown-icon.purple { background: linear-gradient(135deg, #EFE8FE, #E4D9FD); }
.dropdown-icon.green { background: linear-gradient(135deg, #E0F6EB, #CDEED9); }
.dropdown-title { font-size: 14px; font-weight: 600; color: var(--c-ink-0); }
.dropdown-desc { font-size: 12.5px; color: var(--c-ink-3); margin-top: 2px; }
.dropdown-item-sm {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--c-ink-1);
  border-radius: var(--r-sm);
  transition: background .15s, color .15s;
}
.dropdown-item-sm:hover { background: var(--c-brand-light); color: var(--c-brand); }
.dropdown-dot { color: var(--c-brand); margin-right: 6px; font-weight: 700; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-login {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink-2);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-login:hover { color: var(--c-brand); background: var(--c-brand-light); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: var(--c-ink-0);
  border-radius: var(--r-pill);
  transition: all .2s;
}
.nav-cta:hover {
  background: var(--c-brand);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(75, 100, 255, 0.3);
}

@media (min-width: 1301px) and (max-width: 1500px) {
  html[lang="ja"] .nav-container { gap: 24px; }
  html[lang="ja"] .nav-menu > .nav-item {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }
  html[lang="ja"] .nav-phone { display: none; }
  html[lang="ja"] .nav-actions { gap: 6px; }
}

/* 语言切换器 */
.nav-lang {
  position: relative;
  padding: 6px 12px;
}
.lang-current {
  font-size: 13.5px;
  font-weight: 500;
}
.nav-dropdown-lang {
  min-width: 200px;
  max-height: 400px;
  overflow-y: auto;
  padding: 4px;
}
.lang-item {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--c-ink-1);
  border-radius: var(--r-sm);
  transition: background .15s, color .15s;
}
.lang-item-hidden,
.lang-item[hidden] {
  display: none !important;
}
.lang-item:hover {
  background: var(--c-brand-light);
  color: var(--c-brand);
}
.lang-item.active {
  background: var(--c-brand-light);
  color: var(--c-brand);
  font-weight: 600;
}

html[dir="rtl"] body {
  direction: rtl;
}
html[dir="rtl"] .nav-container,
html[dir="rtl"] .nav-menu,
html[dir="rtl"] .nav-actions,
html[dir="rtl"] .hero-stats-new,
html[dir="rtl"] .prompt-quick,
html[dir="rtl"] .category-row,
html[dir="rtl"] .footer-top {
  direction: rtl;
}
html[dir="rtl"] .prompt-input,
html[dir="rtl"] .final-input {
  text-align: right;
}
html[dir="rtl"] .nav-dropdown {
  left: auto;
  right: 0;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav-mobile-toggle span {
  width: 22px; height: 2px;
  background: var(--c-ink-1);
  border-radius: 2px;
  transition: all .2s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
  background: linear-gradient(180deg, #FAFBFF 0%, #FFFFFF 60%);
}
/* 对齐 hina.com 首页底图呈现：cover 填充 + 居中 + 淡入缩放进场 */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg .bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg .bg-image {
  position: absolute;
  inset: 0;
  background-position: 50% calc(50% - 212px);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.2s ease;
}
.hero-bg .bg-image.active {
  opacity: 1;
  transform: scale(1);
}
/* 覆盖一层极浅白渐变，保证深色文字/输入框可读，不改变底图主体质感 */
.hero-bg .bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.35) 50%, rgba(255,255,255,.75) 100%);
}

.hero-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 16.9px;
  font-weight: 500;
  color: var(--c-brand);
  background: white;
  border: 1px solid #D6E1FA;
  border-radius: var(--r-pill);
  box-shadow: 0 1px 4px rgba(75,100,255,0.08);
  margin-bottom: 28px;
  transition: all 0.2s;
  cursor: pointer;
}
.hero-tag:hover {
  background: var(--c-brand-light);
  border-color: var(--c-brand);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(75,100,255,0.15);
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #00E5A5;
  box-shadow: 0 0 8px rgba(0, 229, 165, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--c-ink-0);
  margin-bottom: 20px;
}
.hero-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--c-ink-2);
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* 对话式输入 */
.hero-prompt {
  max-width: 836px;
  margin: 0 auto 48px;
}
.prompt-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 14px 14px 18px;
  background: white;
  border: 1.5px solid var(--c-line);
  border-radius: 20px;
  box-shadow: var(--sh-md);
  transition: all .2s;
}
.prompt-box:focus-within {
  border-color: var(--c-brand);
  box-shadow: 0 0 0 4px rgba(75,100,255,0.12), var(--sh-lg);
}
.prompt-ai-icon {
  flex-shrink: 0;
  padding-bottom: 8px;
}
.prompt-input {
  flex: 1;
  border: none;
  outline: none;
  resize: none;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink-0);
  padding: 8px 4px;
  max-height: 180px;
  background: transparent;
}
.prompt-input::placeholder { color: var(--c-ink-4); }
.prompt-send {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--grad-brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.prompt-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(75,100,255,0.35);
}

.prompt-quick {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.prompt-quick-label {
  font-size: 13px;
  color: var(--c-ink-3);
  margin-right: 2px;
}
.prompt-chip {
  padding: 6px 11px;
  font-size: 12.5px;
  color: var(--c-ink-1);
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  transition: all .15s;
}
.prompt-chip:hover {
  border-color: var(--c-brand);
  color: var(--c-brand);
  background: var(--c-brand-light);
  transform: translateY(-1px);
}

/* Hero 统计 - 新版本 */
.hero-stats-new {
  display: inline-grid;
  grid-template-columns: repeat(9, max-content);
  column-gap: 6px;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 680px;
  max-width: calc(100vw - 48px);
  height: 58px;
  margin: 24px auto 0;
  padding: 0 24px;
  box-sizing: border-box;
  border-radius: 29px;
  background: #E6F2FF;
  box-shadow: 0 4px 12px rgba(75, 100, 255, 0.08);
  color: #1A1A2E;
  white-space: nowrap;
  overflow: hidden;
}
.stats-text,
.stats-em {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.stats-text {
  height: 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #1A1A2E;
}
.stats-em {
  height: 58px;
  font-size: 27px;
  line-height: 58px;
  font-weight: 800;
  color: var(--c-brand);
}
.hero-stats-new > :nth-child(3),
.hero-stats-new > :nth-child(6) {
  margin-inline-end: 7.5px;
}

/* Hero区企业Logo展示 */
.hero-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px 20px;
  margin-top: 12px;
  padding-top: 10px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.hero-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0;
  background: transparent;
  border: none;
  transition: all 0.2s;
}
.hero-logo-item img {
  max-height: 54.4px;
  max-width: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
}
.hero-logo-item img.logo-starbucks {
  max-height: 71.81px;
  max-width: 96%;
}
.hero-logo-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* ============ 客户 Logo 墙 ============ */
.logos {
  padding: 48px 0 32px;
  border-top: 1px solid var(--c-line-soft);
  background: var(--c-bg-soft);
}
.logos-caption {
  text-align: center;
  font-size: 13.5px;
  color: var(--c-ink-3);
  margin-bottom: 24px;
}
.logos-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.logo-pill {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink-2);
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  transition: all .2s;
}
.logo-pill:hover {
  color: var(--c-brand);
  border-color: var(--c-brand);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

/* ============ Section 通用 ============ */
section { position: relative; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: var(--container);
  text-align: left;
  margin-bottom: 40px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-ink-0);
  line-height: 1.2;
}
.section-sub {
  margin-top: 16px;
  font-size: 17px;
  color: var(--c-ink-2);
  line-height: 1.65;
}
.section-more {
  color: var(--c-brand);
  font-weight: 600;
  font-size: 14px;
}
.section-more:hover { text-decoration: underline; }

/* ============ 产品矩阵 ============ */
.products { padding: 96px 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product-card {
  position: relative;
  padding: 32px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: #C9D7F5;
  box-shadow: var(--sh-xl);
  transform: translateY(-4px);
}
.feature-card {
  background: linear-gradient(135deg, #F6F9FF 0%, #FFFFFF 70%);
  border-color: #D6E1FA;
}
.card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}
.card-tag-primary {
  color: white;
  background: var(--grad-brand);
}

.card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon-wrap.blue { background: linear-gradient(135deg, #DCE7FF, #EEF3FF); }
.card-icon-wrap.cyan { background: linear-gradient(135deg, #CDEAFE, #E0F6FD); }
.card-icon-wrap.purple { background: linear-gradient(135deg, #E4D9FD, #EFE8FE); }
.card-icon-wrap.green { background: linear-gradient(135deg, #CDEED9, #E0F6EB); }
.card-icon { font-size: 26px; }

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--c-ink-0);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.card-lead {
  font-size: 14.5px;
  color: var(--c-ink-2);
  margin-bottom: 20px;
  line-height: 1.6;
}
.card-list {
  margin-bottom: 24px;
}
.card-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 14px;
  color: var(--c-ink-1);
  line-height: 1.55;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='6' fill='%23EEF3FF'/%3E%3Cpath d='M4.5 7.2L6 8.7L9.5 5.2' stroke='%231C57D5' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.card-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line-soft);
}
.card-metrics {
  display: flex;
  gap: 20px;
}
.card-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.m-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--c-brand);
  letter-spacing: -0.01em;
}
.m-lbl {
  font-size: 11.5px;
  color: var(--c-ink-3);
}
.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-brand);
  white-space: nowrap;
  transition: transform .2s;
}
.card-link:hover { transform: translateX(4px); }

/* ============ 价值 6 点 ============ */
.values {
  padding: 96px 0;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-item {
  padding: 28px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: all .25s;
}
.value-item:hover {
  border-color: #C9D7F5;
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.value-icon {
  width: 44px; height: 44px;
  background: var(--c-brand-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.value-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-ink-0);
  margin-bottom: 8px;
}
.value-desc {
  font-size: 14px;
  color: var(--c-ink-2);
  line-height: 1.65;
}

/* ============ 场景方案 ============ */
.scenes { padding: 96px 0; }
.scene-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  width: fit-content;
  margin: 0 auto 40px;
}
.scene-tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink-2);
  border-radius: var(--r-pill);
  transition: all .2s;
}
.scene-tab:hover { color: var(--c-brand); }
.scene-tab.active {
  color: white;
  background: var(--c-ink-0);
  box-shadow: var(--sh-md);
}

.scene-panel { display: none; }
.scene-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  animation: fadeUp .4s var(--ease);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.scene-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--c-ink-0);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 16px;
}
.scene-lead {
  font-size: 16px;
  color: var(--c-ink-2);
  margin-bottom: 28px;
  line-height: 1.7;
}
.scene-features { margin-bottom: 32px; }
.scene-features li {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--c-ink-1);
  line-height: 1.6;
}
.sf-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--c-brand-light);
  color: var(--c-brand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.scene-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: white;
  background: var(--c-ink-0);
  border-radius: var(--r-pill);
  transition: all .2s;
}
.scene-cta:hover {
  background: var(--c-brand);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(75,100,255,0.3);
}

/* 模拟 UI */
.scene-mock {
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.mock-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--c-bg-soft);
  border-bottom: 1px solid var(--c-line);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #E5E9F0;
}
.mock-dots span:nth-child(1) { background: #FF7676; }
.mock-dots span:nth-child(2) { background: #FFC857; }
.mock-dots span:nth-child(3) { background: #6FD37D; }
.mock-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink-2);
}

.mock-body {
  padding: 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mock-msg {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.mock-msg.user { justify-content: flex-end; }
.mock-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.mock-bubble {
  max-width: 80%;
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--c-ink-1);
  background: var(--c-bg-soft);
  border-radius: 14px;
  border-top-left-radius: 4px;
}
.mock-bubble.user {
  background: var(--grad-brand);
  color: white;
  border-top-left-radius: 14px;
  border-top-right-radius: 4px;
}
.mock-typing {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  background: var(--c-bg-soft);
  border-radius: 14px;
  width: fit-content;
  margin-left: 42px;
}
.mock-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-ink-4);
  animation: typing 1.4s infinite;
}
.mock-typing span:nth-child(2) { animation-delay: .2s; }
.mock-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* Dashboard mock */
.mock-dashboard { padding: 16px; gap: 6px; }
.dash-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--c-bg-soft);
  border-radius: 10px;
  font-size: 13.5px;
}
.dash-name { color: var(--c-ink-1); font-weight: 500; }
.dash-score {
  font-weight: 800;
  font-size: 16px;
  color: var(--c-ink-2);
  min-width: 28px;
  text-align: right;
}
.dash-score.dash-high { color: #10B981; }
.dash-score.dash-low { color: #9CA3AF; }
.dash-tag {
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.dash-tag-green { background: #DEFBEA; color: #047857; }
.dash-tag-yellow { background: #FEF3C7; color: #92400E; }
.dash-tag-gray { background: #F1F3F8; color: #6B7280; }

/* Monitor mock */
.mock-monitor { align-items: center; justify-content: center; }
.monitor-big {
  text-align: center;
  padding: 16px 0;
}
.monitor-num {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}
.monitor-unit {
  font-size: 13px;
  color: var(--c-ink-3);
  margin-top: 8px;
}
.monitor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}
.monitor-cell {
  padding: 12px;
  background: var(--c-bg-soft);
  border-radius: 10px;
  text-align: center;
}
.mc-label { font-size: 11.5px; color: var(--c-ink-3); }
.mc-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-ink-0);
  margin-top: 4px;
}

.mock-radar { align-items: center; justify-content: center; padding: 16px; }

/* ============ 行业方案 ============ */
.industries {
  padding: 96px 0;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.industry-card {
  padding: 24px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: all .25s;
  cursor: pointer;
}
.industry-card:hover {
  border-color: var(--c-brand);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.ind-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.ind-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-ink-0);
  margin-bottom: 6px;
}
.ind-desc {
  font-size: 13.5px;
  color: var(--c-ink-3);
  line-height: 1.55;
}

/* ============ API / 白标 / 渠道合作 ============ */
.partner-section {
  padding: 96px 0;
  background: white;
  color: var(--c-ink-1);
}
.partner-section .section-head {
  color: inherit;
}
.partner-section .section-title {
  color: var(--c-ink-0);
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.partner-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.partner-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink-2);
}
.partner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.partner-actions .btn {
  min-width: 132px;
  justify-content: center;
  padding: 12px 24px;
  border: 1.5px solid var(--c-brand);
  border-radius: var(--r-pill);
  background: var(--grad-brand);
  color: white;
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(75, 100, 255, 0.18);
}
.partner-actions .btn:hover {
  border-color: var(--c-brand-dark);
  background: linear-gradient(135deg, var(--c-brand-dark) 0%, var(--c-brand-alt) 100%);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(75, 100, 255, 0.24);
}
.btn-ghost {
  background: white;
  color: var(--c-brand);
  border: 1.5px solid var(--c-line);
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.btn-ghost:hover {
  background: var(--c-brand-light);
  border-color: var(--c-brand);
  transform: translateY(-1px);
}
.partner-right {
  display: flex;
  justify-content: flex-end;
}
.partner-panel {
  background: white;
  color: var(--c-ink-0);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--sh-lg);
  width: 100%;
  max-width: 480px;
}
.partner-panel-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--c-ink-0);
}
.partner-list {
  display: grid;
  gap: 14px;
  list-style: none;
}
.partner-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-ink-2);
  padding-left: 20px;
  position: relative;
}
.partner-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-brand-alt);
}

/* ============ 客户案例 ============ */
.cases {
  padding: 96px 0;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
}
.cases .section-head {
  margin-bottom: 48px;
}
.cases .logos-track {
  margin-bottom: 15px;
}
.case-highlight {
  position: relative;
  max-width: 880px;
  margin: 0 auto 15px;
  padding: 48px 48px 20px;
  background: var(--c-ink-0);
  color: white;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.case-highlight::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(75,100,255,0.4), transparent 70%);
  filter: blur(40px);
}
.case-quote-mark {
  position: relative;
  font-size: 72px;
  font-weight: 800;
  color: var(--c-brand);
  line-height: 1;
  margin-bottom: 8px;
}
.case-quote {
  position: relative;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 32px;
  color: #F4F7FB;
}
.case-author {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.case-author-logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: white;
}
.case-author-name {
  font-size: 15px;
  font-weight: 600;
  color: white;
}
.case-author-title {
  font-size: 13px;
  color: #9CB3DA;
  margin-top: 2px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-item {
  padding: 28px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: all .25s;
}
.case-item:hover {
  border-color: #C9D7F5;
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.case-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-brand);
  background: var(--c-brand-light);
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.case-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-ink-0);
  line-height: 1.35;
  margin-bottom: 8px;
}
.case-desc {
  font-size: 14px;
  color: var(--c-ink-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.case-stats {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line-soft);
}
.case-stats span {
  font-size: 13px;
  color: var(--c-ink-2);
  font-weight: 600;
}

/* ============ 信任带 ============ */
.trust {
  padding: 64px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item { text-align: center; }
.trust-icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.trust-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-ink-0);
  margin-bottom: 6px;
}
.trust-desc {
  font-size: 13px;
  color: var(--c-ink-3);
  line-height: 1.55;
}
.trust-in-cases {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
.trust-in-cases .trust-grid {
  gap: 12px;
}
.trust-in-cases .trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  padding: 12px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.trust-in-cases .trust-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  margin: 0;
  background: var(--c-brand-light);
  border-radius: 12px;
  font-size: 20px;
}
.trust-content {
  min-width: 0;
}
.trust-in-cases .trust-title {
  margin-bottom: 4px;
}

/* ============ CTA ============ */
/* CTA Final - 新的深色背景输入框风格 */
.cta-final {
  padding: 86px 48px;
  background: white;
  color: var(--c-ink-0);
  text-align: center;
}
.final-title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.final-desc {
  color: var(--c-ink-3);
  margin-bottom: 32px;
  font-size: 17px;
}
.final-input-box {
  max-width: 760px;
  margin: 0 auto;
  background: var(--c-bg-soft);
  border: 1.5px solid var(--c-line);
  border-radius: 28px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  box-shadow: var(--sh-md);
}
.final-input {
  border: 0;
  outline: 0;
  padding: 0 20px;
  color: var(--c-ink-0);
  font-size: 16px;
  background: transparent;
  font-family: var(--font);
  height: 52px;
  line-height: 52px;
}
.final-input::placeholder {
  color: var(--c-ink-4);
}
.btn-final-send {
  background: var(--grad-brand);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 14px 32px;
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.btn-final-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(75,100,255,0.4);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  font-size: 15.5px;
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: all .2s;
}
.btn-primary-lg {
  background: white;
  color: var(--c-ink-0);
}
.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}
.btn-ghost-lg {
  color: white;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost-lg:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.cta-contact {
  position: relative;
  font-size: 13.5px;
  color: #8DA3C7;
}
.cta-contact strong {
  color: white;
  font-weight: 600;
  margin: 0 4px;
}

/* ============ 最新资讯（hina.com 同款） ============ */
.news-section {
  padding: 100px 0;
  background: var(--c-bg-soft);
}
.news-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}
.news-content {
  display: flex;
  gap: 25px;
}
.news-sidebar {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}
.news-header {
  margin-bottom: 34px;
}
.news-title {
  font-size: 38px;
  font-weight: 600;
  color: #111;
  line-height: normal;
  margin-bottom: 10px;
}
.news-title-underline {
  width: 40px;
  height: 6px;
  border-radius: 100px;
  background: linear-gradient(98.892deg, #2cacfe 1.179%, #256af2 105.5%);
}
.category-card {
  position: relative;
  width: 300px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card.active {
  background: linear-gradient(135deg, #0068ff, #29abfd);
}
.category-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.category-card img {
  width: 36px;
  height: auto;
  flex-shrink: 0;
}
.category-info {
  min-width: 0;
}
.category-name {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  line-height: normal;
  margin-bottom: 8px;
}
.category-desc {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 21px;
}
.category-card.active .category-name,
.category-card.active .category-desc,
.category-card.active .category-arrow {
  color: white;
}
.category-arrow {
  margin-top: 0;
  color: #0068ff;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  transform: translateX(-10px);
  transition: .4s;
}
.category-card.active .category-arrow {
  transform: translateX(0);
}
.category-card:hover {
  transform: translateY(-4px);
}
.news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 425px));
  gap: 20px 25px;
  flex: 1;
}
.news-card {
  display: block;
  height: 336.5px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(177, 212, 237, 0.2);
  transition: .3s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(177, 212, 237, 0.35);
}
.news-card-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.news-card:hover .news-card-image img {
  transform: scale(1.05);
}
.news-card-content {
  padding: 20px 30px 30px;
  background: white;
}
.news-card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #333;
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-card-date {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  line-height: normal;
}

/* ============ Footer ============ */
.footer {
  padding: 72px 0 32px;
  background: var(--c-ink-0);
  color: #B4C5E4;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 28px; margin-bottom: 20px; }
.footer-desc {
  font-size: 13.5px;
  color: #8DA3C7;
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #B4C5E4;
}
.footer-h {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.footer-links-col a {
  display: block;
  padding: 6px 0;
  font-size: 13.5px;
  color: #8DA3C7;
  transition: color .15s;
}
.footer-links-col a:hover { color: white; }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12.5px;
  color: #8DA3C7;
}
.footer-copy {
  width: 100%;
  font-size: 12.5px;
  color: #6E82A8;
  text-align: center;
}
.footer-copy a {
  color: #8DA3C7;
  margin: 0 2px;
}
.footer-copy a:hover { color: white; }

/* ============ 响应式 ============ */
@media (max-width: 1160px) {
  .nav-container { gap: 16px; }
  .nav-menu { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-login { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .values-grid, .industry-grid, .case-grid, .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .announce-inner { font-size: 12px; gap: 6px; padding: 0 12px; }

  .hero { padding: 48px 0 64px; }
  .hero-subtitle { font-size: 16px; }
  .hero-stats-new {
    display: flex;
    flex-wrap: wrap;
    width: min(100%, 774px);
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: 48px;
    margin-top: 20px;
    padding: 8px 12px;
    border-radius: 24px;
  }
  .stats-text {
    height: 20px;
    font-size: 13px;
    line-height: 20px;
  }
  .stats-em {
    height: 28px;
    font-size: 18px;
    line-height: 28px;
  }
  .hero-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 16px;
    margin-top: 8px;
    padding-top: 8px;
  }
  .hero-logo-item { height: 72px; }
  .hero-logo-item img { max-height: 48px; }
  .hero-logo-item img.logo-starbucks { max-height: 63.36px; }

  .prompt-quick { gap: 6px; }
  .prompt-chip { font-size: 12px; padding: 6px 12px; }
  .prompt-quick-label { width: 100%; text-align: center; margin: 0 0 4px; }

  .section-head { margin-bottom: 40px; }
  .cases .section-head { margin-bottom: 34px; }
  .section-sub { font-size: 15px; }

  .products, .values, .scenes, .industries, .cases, .news { padding: 64px 0; }
  .partner-section { padding: 64px 0; }
  .cta { padding: 64px 0; }
  .cta-inner { padding: 48px 24px; }

  .values-grid, .industry-grid, .case-grid, .news-grid {
    grid-template-columns: 1fr;
  }
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .partner-right {
    justify-content: center;
  }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  .scene-panel.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .scene-tabs {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    border-radius: var(--r-md);
  }
  .scene-tab { white-space: nowrap; }

  .case-highlight { padding: 32px 24px 20px; }
  .case-quote { font-size: 18px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: center; }
}

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

@media (max-width: 420px) {
  .nav-brand-sub { display: none; }
}

@media (max-width: 480px) {
  .container, .nav-container { padding: 0 16px; }
  .hero-title { font-size: 36px; }
  .hero-tag { font-size: 15.6px; }
  .prompt-box { padding: 12px; }
  .prompt-input { font-size: 15px; }
  .values-grid, .trust-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .monitor-num { font-size: 56px; }
}

/* ============ Fade-in 动画 ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ 导航滚动态 ============ */
.nav.is-scrolled {
  box-shadow: 0 2px 12px rgba(15, 31, 58, 0.06);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
}

/* ============ 移动端菜单展开态 ============ */
@media (max-width: 768px) {
  .nav-menu.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    background: #fff;
    border-top: 1px solid var(--c-border);
    box-shadow: 0 8px 24px rgba(15, 31, 58, 0.08);
  }
  .nav-menu.is-open .nav-item,
  .nav-menu.is-open .nav-item > span {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid var(--c-border);
    font-size: 15px;
  }
  .nav-menu.is-open .nav-caret,
  .nav-menu.is-open .nav-dropdown { display: none; }
  body.nav-open { overflow: hidden; }

  .nav-mobile-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ============ 官网结构补充样式 ============ */

/* Logo 尺寸：官网 Logo 高约 30px */
.nav-logo { height: 32px; width: auto; }
.footer-logo { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: .95; }

/* 解决方案下拉（双栏：场景 + 行业） */
.nav-dropdown-solutions {
  min-width: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 20px 20px 16px;
}
.dd-col-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-ink-4);
  letter-spacing: .8px;
  padding: 0 12px 10px;
  border-bottom: 1px solid var(--c-line-soft);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.dd-item {
  display: block;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  transition: background .15s;
}
.dd-item:hover { background: var(--c-brand-light); }
.dd-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink-0);
}
.dd-desc {
  font-size: 12.5px;
  color: var(--c-ink-3);
  margin-top: 2px;
}
.dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.dd-chip {
  padding: 9px 12px;
  font-size: 13.5px;
  color: var(--c-ink-1);
  border-radius: var(--r-sm);
  transition: background .15s, color .15s;
}
.dd-chip:hover { background: var(--c-brand-light); color: var(--c-brand); }

.nav-dropdown-sm { min-width: 180px; }
.nav-dropdown-right { right: 0; left: auto; }

/* Agent 矩阵下拉 */
.nav-dropdown-agents {
  min-width: 320px;
  padding: 10px;
}
.dd-item-agent {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
}
.dd-agent-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 10px;
  background: var(--c-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.dd-agent-main { flex: 1; min-width: 0; }

/* 导航电话号码 */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-brand);
}
.nav-phone svg { color: var(--c-brand); }

/* 登录 - 带下拉 */
.nav-login.has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  position: relative;
}

/* Hero CTA 按钮行 */
.hero-cta-row {
  display: flex;
  gap: 12px;
  margin: 24px 0 40px;
  flex-wrap: wrap;
}
.hero-cta-row .btn {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary {
  background: var(--c-brand);
  color: white;
}
.btn-primary:hover {
  background: var(--c-brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(75, 100, 255, 0.3);
}
.btn-ghost {
  background: white;
  color: var(--c-ink-1);
  border: 1px solid var(--c-line);
}
.btn-ghost:hover {
  border-color: var(--c-brand);
  color: var(--c-brand);
}

/* 产品卡片黄色图标 */
.card-icon-wrap.yellow {
  background: linear-gradient(135deg, #FFF6D4, #FFE8A0);
}

/* CTA 标识行 */
.cta-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  color: #FFE59A;
  border: 1px solid rgba(255, 205, 39, 0.4);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Footer QR */
.footer-qr-col {
  display: flex;
  flex-direction: column;
}
.footer-qr {
  width: 96px; height: 96px;
  background: white;
  border-radius: 8px;
  margin: 8px 0;
  background-image:
    linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
    linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
    linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
  background-size: 12px 12px;
  background-position: 0 0, 0 6px, 6px -6px, -6px 0px;
}
.footer-qr-text {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ============ 移动端补丁 ============ */
@media (max-width: 1320px) {
  .nav-phone { display: none; }
}
@media (max-width: 1300px) {
  html[lang="ja"] .nav-container { gap: 16px; }
  html[lang="ja"] .nav-menu { display: none; }
  html[lang="ja"] .nav-mobile-toggle { display: flex; }
  html[lang="ja"] .nav-login { display: none; }
}
@media (max-width: 768px) {
  .nav-dropdown-solutions { min-width: 280px; grid-template-columns: 1fr; }
  .dd-grid { grid-template-columns: 1fr; }
  .footer-qr-col { grid-column: 1 / -1; }
  .footer-qr { margin: 8px auto; }
  .footer-qr-text { text-align: center; }
}

/* ============================================================
   ============   新版首页·2026·海纳AI招聘Claw   ============
   ============================================================ */

/* ---------- Nav Brand ---------- */
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-brand-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-brand);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--c-brand-light);
  letter-spacing: 0.5px;
}

/* ---------- Hero Dominant ---------- */
.hero-dominant {
  padding: 39px 0 96px;
}
.hero-title-xl {
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

/* Prompt box XL */
.prompt-box-xl {
  padding: 22px 22px 22px 26px;
  border-radius: 28px;
  border-width: 2px;
  box-shadow: var(--sh-lg);
}
.prompt-input-xl {
  font-size: 18px;
  line-height: 1.65;
  padding: 10px 6px;
  height: 80px;
  min-height: 80px;
  max-height: 80px;
  overflow-y: auto;
}
.prompt-send-xl {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.hero-fast-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px auto 44px;
  padding: 10px 18px;
  background: #F1FAF4;
  border: 1px solid #C9EDD6;
  color: #167845;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
}
.hero-fast-note:hover {
  background: #E7F7EE;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(16,185,129,.18);
}
.fast-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px rgba(16,185,129,.6);
  animation: pulse 2s infinite;
}

/* ---------- Compare ---------- */
.compare {
  padding: 96px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F8FF 100%);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.compare-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .3s var(--ease);
}
.compare-card-link:hover {
  transform: translateY(-4px);
}
.compare-col {
  padding: 36px 32px;
  background: white;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-xl);
  transition: all .3s var(--ease);
  cursor: pointer;
}
.compare-card-link:hover .compare-col {
  box-shadow: var(--sh-lg);
}
.compare-general {
  opacity: .92;
}
.compare-hina {
  border-color: var(--c-brand);
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FF 100%);
  box-shadow: var(--sh-lg);
  position: relative;
}
.compare-hina::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  padding: 2px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.compare-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--c-ink-3);
  background: var(--c-bg-soft);
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.compare-tag-hina {
  background: var(--c-brand-light);
  color: var(--c-brand);
}
.compare-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--c-ink-0);
  margin-bottom: 6px;
}
.compare-desc {
  font-size: 14px;
  color: var(--c-ink-3);
  margin-bottom: 20px;
}
.compare-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compare-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-ink-2);
}
.compare-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: 700;
}
.compare-general .compare-list li::before {
  content: "·";
  color: var(--c-ink-4);
  font-size: 22px;
  line-height: 1;
  top: -2px;
}
.compare-hina .compare-list li::before {
  content: "✓";
  color: var(--c-brand);
}
.compare-note {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
  color: var(--c-ink-2);
  font-weight: 500;
}

/* ---------- Agents ---------- */
.agents {
  padding: 96px 0;
  background: white;
}
.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.agent-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .3s var(--ease);
}
.agent-card-link:hover {
  transform: translateY(-4px);
}
.agent-card {
  position: relative;
  padding: 28px 26px 24px;
  background: white;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: all .3s var(--ease);
  overflow: hidden;
  cursor: pointer;
}
.agent-card-link:hover .agent-card {
  border-color: var(--c-brand);
  box-shadow: var(--sh-lg);
}
.agent-card-feature {
  background: linear-gradient(180deg, #F4F7FF 0%, #FFFFFF 100%);
  border-color: var(--c-brand);
  box-shadow: var(--sh-md);
}
.agent-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #FFCD27, #FAAB3C);
  border-radius: var(--r-pill);
  letter-spacing: .5px;
}
.agent-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.agent-icon-1 { background: linear-gradient(135deg, #E8EFFE, #DCE7FF); }
.agent-icon-2 { background: linear-gradient(135deg, #E0F6FD, #CDEAFE); }
.agent-icon-3 { background: linear-gradient(135deg, #4B64FF, #216FFF); color: white; box-shadow: 0 8px 20px rgba(75,100,255,.35); }
.agent-icon-4 { background: linear-gradient(135deg, #EFE8FE, #E4D9FD); }
.agent-icon-5 { background: linear-gradient(135deg, #E0F6EB, #CDEED9); }
.agent-icon-6 { background: linear-gradient(135deg, #FFF2D6, #FFE7B3); }
.agent-handle {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-brand);
  padding: 4px 10px;
  background: var(--c-brand-light);
  border-radius: var(--r-pill);
  margin-bottom: 12px;
  font-family: "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
}
.agent-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-ink-0);
  line-height: 1.35;
  margin-bottom: 10px;
}
.agent-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-ink-2);
  margin-bottom: 16px;
}
.agent-footer {
  padding-top: 14px;
  border-top: 1px solid var(--c-line-soft);
}
.agent-meta {
  font-size: 12.5px;
  color: var(--c-ink-3);
}
.agents-cta {
  text-align: center;
  margin-top: 48px;
}
.btn-lg {
  padding: 15px 32px;
  font-size: 16px;
  border-radius: var(--r-md);
}

/* ---------- Workspace Preview ---------- */
.workspace {
  padding: 96px 0;
  background: linear-gradient(180deg, #F7F8FF 0%, #EFF4FF 100%);
}
.workspace-preview-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.workspace-preview-link:hover {
  transform: translateY(-4px);
}
.workspace-preview-link:hover .workspace-preview {
  box-shadow: 0 20px 60px rgba(75,100,255,.18);
}
.workspace-preview {
  max-width: 1080px;
  margin: 48px auto 0;
  background: white;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--c-line);
  overflow: hidden;
  cursor: pointer;
}
.ws-chrome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: #F7F8FA;
  border-bottom: 1px solid var(--c-line-soft);
}
.ws-dots {
  display: flex;
  gap: 6px;
}
.ws-dots span {
  width: 11px; height: 11px; border-radius: 50%;
}
.ws-dots span:nth-child(1) { background: #FF7676; }
.ws-dots span:nth-child(2) { background: #FFC857; }
.ws-dots span:nth-child(3) { background: #6FD37D; }
.ws-addr {
  flex: 1;
  text-align: center;
  font-size: 12.5px;
  color: var(--c-ink-3);
  font-family: "SF Mono", Menlo, Consolas, monospace;
  background: white;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-line-soft);
  max-width: 260px;
  margin: 0 auto;
}
.ws-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 520px;
}
.ws-side {
  padding: 20px 16px;
  background: #FAFBFF;
  border-right: 1px solid var(--c-line-soft);
}
.ws-side-btn {
  padding: 10px 14px;
  background: var(--grad-brand);
  color: white;
  border-radius: var(--r-md);
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(75,100,255,.25);
}
.ws-side-sec {
  margin-bottom: 22px;
}
.ws-side-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--c-ink-4);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 10px 6px;
}
.ws-side-item {
  padding: 7px 10px;
  font-size: 13.5px;
  color: var(--c-ink-2);
  border-radius: 8px;
  cursor: pointer;
  transition: all .15s;
}
.ws-side-item:hover {
  background: white;
  color: var(--c-brand);
}
.ws-side-item.active {
  background: white;
  color: var(--c-brand);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(75,100,255,.1);
}
.ws-main {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ws-today-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink-3);
  margin-bottom: 14px;
  letter-spacing: .5px;
}
.ws-today-label::before {
  content: "";
  width: 4px; height: 14px;
  background: var(--c-brand);
  border-radius: 2px;
}
.ws-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ws-card {
  padding: 16px;
  background: white;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-md);
  transition: all .2s;
}
.ws-card:hover {
  border-color: var(--c-brand);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.ws-card-tag {
  font-size: 12px;
  color: var(--c-brand);
  font-weight: 500;
  margin-bottom: 8px;
}
.ws-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-ink-0);
  margin-bottom: 6px;
}
.ws-card-meta {
  font-size: 12.5px;
  color: var(--c-ink-3);
}
.ws-prompt {
  margin-top: auto;
}
.ws-prompt-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-ink-1);
  margin-bottom: 12px;
}
.ws-prompt-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #F7F8FF;
  border: 1.5px solid #E5EBFF;
  border-radius: var(--r-lg);
}
.ws-prompt-text {
  flex: 1;
  font-size: 14px;
  color: var(--c-ink-4);
}
.ws-mention {
  color: var(--c-brand);
  font-weight: 700;
}
.ws-prompt-send {
  width: 36px; height: 36px;
  background: var(--grad-brand);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.workspace-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}
.workspace-hint {
  font-size: 13px;
  color: var(--c-ink-4);
}

/* ---------- Roadmap ---------- */
.roadmap {
  padding: 96px 0;
  background: white;
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.rm-card {
  padding: 30px 28px;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--c-line);
  background: white;
  position: relative;
  transition: all .3s var(--ease);
}
.rm-done {
  opacity: .85;
}
.rm-done .rm-phase { color: var(--c-ink-4); }
.rm-now {
  border-color: var(--c-brand);
  background: linear-gradient(180deg, #F4F7FF 0%, #FFFFFF 100%);
  box-shadow: var(--sh-lg);
  transform: translateY(-8px);
}
.rm-now .rm-phase { color: var(--c-brand); }
.rm-next {
  border-style: dashed;
}
.rm-next .rm-phase { color: var(--c-accent-2); }
.rm-phase {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: .5px;
}
.rm-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-ink-0);
  line-height: 1.35;
  margin-bottom: 10px;
}
.rm-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-ink-2);
  margin-bottom: 14px;
}
.rm-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--c-line-soft);
}
.rm-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--c-ink-2);
  line-height: 1.6;
}
.rm-list li::before {
  content: "·";
  position: absolute;
  left: 4px;
  top: -4px;
  font-weight: 700;
  font-size: 20px;
  color: var(--c-brand);
}

/* ---------- Buttons tail ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  background: var(--grad-brand);
  color: white;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: all .2s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-grid { grid-template-columns: 1fr; }
  .rm-now { transform: none; }
  .compare-grid { grid-template-columns: 1fr; }
  .ws-body { grid-template-columns: 1fr; }
  .ws-side { display: none; }
  .ws-cards { grid-template-columns: 1fr 1fr; }
  .news-container { padding: 0 32px; }
  .news-content { gap: 24px; }
  .news-list { grid-template-columns: 1fr; }
  .news-card { max-width: 425px; }
}
@media (max-width: 640px) {
  .hero-dominant { padding: 40px 0 64px; }
  .prompt-box-xl { padding: 14px; border-radius: 20px; }
  .prompt-input-xl { font-size: 15.5px; }
  .agents-grid { grid-template-columns: 1fr; }
  .ws-cards { grid-template-columns: 1fr; }
  .ws-main { padding: 20px; }
  .compare-col { padding: 24px 20px; }

  .news-section { padding: 64px 0; }
  .news-container { padding: 0 20px; }
  .news-content { flex-direction: column; }
  .news-sidebar { width: 100%; }
  .news-header { margin-bottom: 12px; }
  .news-title { font-size: 32px; }
  .category-card { width: 100%; padding: 24px; }
  .news-list { grid-template-columns: 1fr; gap: 18px; }
  .news-card { width: 100%; max-width: none; height: auto; }
  .news-card-image { height: 190px; }
  .news-card-content { padding: 18px 22px 24px; }
  .news-card-title { font-size: 18px; }

  .cta-final { padding: 60px 22px; }
  .final-title { font-size: 30px; }
  .final-input-box { grid-template-columns: 1fr; padding: 12px; }
  .btn-final-send { width: 100%; padding: 16px; }
}
