*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0A59F7;
  --primary-light: #317AF7;
  --primary-lighter: #E6EEFF;
  --primary-pressed: #0850D5;
  --primary-active: #0642AA;
  --on-primary: #ffffff;
  --secondary: #E84026;
  --secondary-pressed: #C7341E;
  --ink: #182431;
  --ink-secondary: #474747;
  --ink-tertiary: #8C8C8C;
  --ink-quaternary: #B2B2B2;
  --body-primary: rgba(24, 36, 49, 0.95);
  --body-secondary: rgba(24, 36, 49, 0.6);
  --canvas-bg: #F1F3F5;
  --canvas-light: #FFFFFF;
  --surface-card: #FFFFFF;
  --surface-elevated: #FFFFFF;
  --divider: rgba(0, 0, 0, 0.05);
  --shadow-1: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-2: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-3: 0 8px 32px rgba(0, 0, 0, 0.10);
  --canvas-dark: #182431;
  --surface-dark-card: #253040;
  --on-dark: #FFFFFF;
  --on-dark-secondary: rgba(255, 255, 255, 0.7);
  --on-dark-tertiary: rgba(255, 255, 255, 0.4);

  --font-display: 'HarmonyOS Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'HarmonyOS Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --section-gap: 80px;
  --container-max: 1200px;
  --nav-height: 56px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas-bg);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ─── NAV ─── */
.primary-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(241, 243, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: var(--nav-height);
  transition: box-shadow 0.3s;
}

.primary-nav.scrolled {
  box-shadow: var(--shadow-1);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.logo-icon {
  width: 28px;
  height: 28px;

}

.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.logo-divider {
  color: var(--ink-tertiary);
  font-weight: 300;
  margin: 0 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.nav-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--canvas-light);
  padding: 16px 32px;
  box-shadow: var(--shadow-2);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
  transition: color 0.2s;
}

.mobile-link:hover {
  color: var(--primary);
}

/* ─── HERO ─── */
.hero-band {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 48px) 32px 48px;
  background: var(--canvas-bg);
}

.hero-content {
  max-width: 540px;
  flex-shrink: 0;
  padding-left: 24px;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-lighter);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--body-secondary);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 48px;
}

/* ─── DEVICE MOCK ─── */
.device-frame {
  width: 260px;
  height: 520px;
  background: var(--canvas-dark);
  border-radius: var(--radius-xl);
  padding: 10px;
  box-shadow: var(--shadow-3), 0 0 0 1px rgba(0, 0, 0, 0.04);
  position: relative;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: #1E2D3D;
  border-radius: 22px;
  overflow: hidden;
}

.screen-content {
  padding: 16px;
}

.mock-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--on-dark-tertiary);
  margin-bottom: 28px;
}

.mock-status-icons {
  display: flex;
  gap: 5px;
  align-items: center;
  color: var(--on-dark-tertiary);
}

.mock-app-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 8px 0;
}

.mock-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: var(--on-dark-tertiary);
  white-space: nowrap;
}

.mock-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.mock-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s, opacity 0.15s;
  border: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  font-size: 16px;
  padding: 10px 24px;
  height: 44px;
}

.btn-primary:hover {
  background: var(--primary-pressed);
}

.btn-primary:active {
  background: var(--primary-active);
  box-shadow: 0 2px 8px rgba(10, 89, 247, 0.3);
}

.btn-sm {
  font-size: 14px;
  padding: 7px 18px;
  height: 34px;
  border-radius: var(--radius-sm);
}

.btn-secondary-light {
  background: var(--canvas-light);
  color: var(--ink);
  font-size: 16px;
  padding: 10px 24px;
  height: 44px;
  box-shadow: var(--shadow-1);
}

.btn-secondary-light:hover {
  box-shadow: var(--shadow-2);
}

.btn-on-primary {
  background: var(--on-primary);
  color: var(--primary);
  font-size: 16px;
  padding: 10px 24px;
  height: 44px;
}

.btn-on-primary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.btn-outline-on-primary {
  background: transparent;
  color: var(--on-primary);
  font-size: 16px;
  padding: 10px 24px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
}

.btn-outline-on-primary:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

/* ─── SECTION: APPS ─── */
.section-light {
  background: var(--canvas-light);
  padding: var(--section-gap) 32px;
  border-radius: 0;
}

.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--body-secondary);
  margin-bottom: 40px;
  max-width: 480px;
}

/* ─── APP CARDS ─── */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.app-card {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s, transform 0.25s;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--divider);
}

.app-card:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}

.app-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-card-icon-img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--canvas-bg);
}

.app-card-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-card-featured {
}

.app-card-icon-img {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.app-card:hover .app-card-icon-img {
  transform: scale(1.08) rotate(-2deg);
}

.app-card-icon svg {
  width: 26px;
  height: 26px;
}

.app-card-info {
  flex: 1;
}

.app-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--ink);
  margin-bottom: 4px;
}

.app-card-en {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-tertiary);
  margin-left: 4px;
}

.app-card-desc {
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.app-card-tags {
  display: flex;
  gap: 6px;
}

.tag {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-tertiary);
  background: var(--canvas-bg);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}

.app-card .btn {
  align-self: flex-start;
}

/* ─── SECTION: ABOUT ─── */
.section-about {
  background: var(--canvas-bg);
  padding: var(--section-gap) 32px;
}

.about-inner {
  display: flex;
  gap: 48px;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 0;
}

.section-eyebrow-about {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title-about {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 20px;
}

.about-body {
  font-size: 16px;
  color: var(--body-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.about-stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  background: var(--canvas-light);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--divider);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--ink-tertiary);
}

.about-visual {
  flex: 1;
  min-width: 0;
}

/* ─── CODE BLOCK ─── */
.code-block {
  background: var(--canvas-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.code-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.code-filename {
  font-size: 12px;
  color: var(--on-dark-tertiary);
  margin-left: 8px;
  font-family: var(--font-body);
}

.code-body {
  padding: 20px 22px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--on-dark-secondary);
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  overflow-x: auto;
}

.code-kw { color: #317AF7; }
.code-fn { color: #5CD9A8; }
.code-type { color: #FBBF24; }
.code-str { color: #F472B6; }
.code-num { color: #C084FC; }

/* ─── SECTION: CTA ─── */
.section-cta {
  background: var(--primary);
  padding: var(--section-gap) 32px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin: 0 32px;
}

.contact-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.section-title-cta {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: var(--on-primary);
  margin-bottom: 14px;
}

.contact-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--canvas-light);
  padding: 28px 20px;
  border-top: 1px solid var(--divider);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-secondary);
}

.footer-logo {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--ink-tertiary);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-copy {
  font-size: 12px;
  color: var(--ink-quaternary);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10, 89, 247, 0.3); }
  50% { box-shadow: 0 0 20px 4px rgba(10, 89, 247, 0.15); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sectionReveal {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.97);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.anim {
  opacity: 0;
  will-change: transform, opacity;
}

.anim.visible {
  animation-fill-mode: both;
}

.section-reveal {
  opacity: 0;
  will-change: transform, opacity, filter;
}

.section-reveal.visible {
  animation: sectionReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-up.visible {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-left.visible {
  animation: fadeInLeft 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-right.visible {
  animation: fadeInRight 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-scale.visible {
  animation: scaleIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-delay-1 { animation-delay: 0.08s !important; }
.anim-delay-2 { animation-delay: 0.16s !important; }
.anim-delay-3 { animation-delay: 0.24s !important; }
.anim-delay-4 { animation-delay: 0.32s !important; }
.anim-delay-5 { animation-delay: 0.40s !important; }
.anim-delay-6 { animation-delay: 0.48s !important; }

.hero-visual.visible .device-frame {
  animation: float 4s ease-in-out infinite;
}

.hero-eyebrow.visible {
  animation: slideDown 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.stat.visible .stat-number {
  animation: countUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.app-card.visible {
  animation: fadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.btn-primary:hover {
  box-shadow: 0 0 0 0 rgba(10, 89, 247, 0);
  animation: pulseGlow 2s ease-in-out infinite;
}

.app-card-icon {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.app-card:hover .app-card-icon {
  transform: scale(1.08) rotate(-2deg);
}

.nav-link::after {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.primary-nav {
  transition: box-shadow 0.3s, backdrop-filter 0.3s;
}

.section-cta {
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero-band {
  position: relative;
  overflow: hidden;
}

.hero-band::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 40%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(10, 89, 247, 0.04) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.code-block {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

.code-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.device-frame {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual:hover .device-frame {
  transform: scale(1.03);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }

  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-visual {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-menu-btn {
    display: flex;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .hero-band {
    flex-direction: column;
    padding: calc(var(--nav-height) + 40px) 20px 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-body {
    font-size: 15px;
  }

  .hero-content {
    padding-left: 0;
  }

  .hero-visual {
    padding-left: 0;
    padding-top: 40px;
  }

  .device-frame {
    width: 200px;
    height: 400px;
    border-radius: 24px;
    padding: 8px;
  }

  .device-screen {
    border-radius: 16px;
  }

  .mock-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .section-light,
  .section-about {
    padding: 56px 20px;
  }

  .section-cta {
    margin: 0 20px;
    padding: 56px 20px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .section-title,
  .section-title-about {
    font-size: 28px;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 12px;
  }

  .stat {
    flex: 1;
    text-align: center;
    align-items: center;
  }

  .stat-number {
    font-size: 28px;
  }

  .section-title-cta {
    font-size: 24px;
  }

  .footer {
    padding: 24px 16px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 12px;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

.qr-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.qr-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.qr-modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  width: min(80vw, 500px);
}

.qr-modal-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
}

.qr-modal-text {
  margin-top: 16px;
  font-size: 16px;
  color: #333;
}
