/* Nuomio landing — static, deploy-anywhere */

:root {
  --bg: #f6f7f9;
  --bg-elevated: #ffffff;
  --text: #1a1d21;
  --text-muted: #5c6570;
  --border: #e4e7ec;
  --accent: #07c160;
  --accent-dark: #059a4c;
  --accent-soft: rgba(7, 193, 96, 0.12);
  --shadow: 0 12px 40px rgba(26, 29, 33, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --font: "Segoe UI", system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif;
  --max: 1120px;
  --header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 720px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 249, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent-dark);
}

.logo-sub {
  font-weight: 500;
  font-size: 0.85em;
  margin-left: 0.35rem;
  color: var(--text-muted);
}

.logo-footer .logo-sub {
  color: rgba(255, 255, 255, 0.75);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin-inline: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-nav a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.site-nav a:not(.btn):hover {
  color: var(--text);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.25rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}

.btn:hover {
  text-decoration: none;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  background: var(--bg-elevated);
  color: var(--text);
}

/* Hero */

.hero {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #eefbf4 0%, var(--bg) 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    justify-self: center;
  }
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 999px;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.brand-mark {
  color: var(--accent-dark);
}

.lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 36em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stats strong {
  font-size: 1.1rem;
  color: var(--text);
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Phone mock */

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.phone-frame {
  width: min(100%, 300px);
  aspect-ratio: 9 / 18.5;
  background: linear-gradient(145deg, #2d3238, #1a1d21);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 22px;
  background: #1a1d21;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-screen {
  background: #fff;
  border-radius: 26px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mock-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.mock-scroll::-webkit-scrollbar {
  width: 4px;
}

.mock-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 4px;
}

.mock-article {
  padding: 2rem 0.75rem 1.5rem;
  max-width: 100%;
}

.mock-tag {
  display: inline-block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  font-weight: 700;
}

.mock-title {
  margin: 0.4rem 0 0.2rem;
  font-size: 0.95rem;
  line-height: 1.38;
  letter-spacing: -0.02em;
  color: #111;
  font-weight: 700;
}

.mock-meta {
  margin: 0 0 0.65rem;
  font-size: 0.62rem;
  color: #8a9199;
  line-height: 1.4;
}

/* 封面图区：模拟头图 + 遮罩标题 */
.mock-cover {
  margin: 0 0 0.65rem;
  position: relative;
  height: 4.5rem;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(125deg, #0a5c3a 0%, #07c160 42%, #5ee4a3 100%);
}

.mock-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.45));
}

.mock-cover-cap {
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  bottom: 0.35rem;
  z-index: 1;
  font-size: 0.58rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.mock-lead {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  line-height: 1.55;
  color: #5c6570;
  padding: 0.45rem 0.5rem;
  background: #f3f5f7;
  border-radius: 6px;
  border-left: 3px solid var(--accent);
}

.mock-p {
  margin: 0 0 0.55rem;
  font-size: 0.66rem;
  line-height: 1.65;
  color: #3d454d;
  text-align: justify;
  text-justify: inter-ideograph;
}

.mock-p-tight {
  margin-bottom: 0.65rem;
  font-size: 0.64rem;
  color: #6b737b;
}

.mock-h4 {
  margin: 0.6rem 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a1d21;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.3;
}

.mock-h4-num {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.2rem;
  font-size: 0.55rem;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
  border-radius: 4px;
}

.mock-quote {
  margin: 0.45rem 0 0.55rem;
  padding: 0.5rem 0.55rem 0.5rem 0.65rem;
  font-size: 0.64rem;
  line-height: 1.55;
  color: #4a5560;
  background: linear-gradient(90deg, rgba(7, 193, 96, 0.1), #f7f9fa);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-style: normal;
}

.mock-ul {
  margin: 0 0 0.55rem;
  padding: 0 0 0 1rem;
  font-size: 0.64rem;
  line-height: 1.55;
  color: #3d454d;
}

.mock-ul li {
  margin-bottom: 0.2rem;
}

.mock-ul li::marker {
  color: var(--accent);
}

.mock-highlight {
  margin: 0.5rem 0 0.55rem;
  padding: 0.5rem 0.55rem;
  border-radius: 6px;
  background: linear-gradient(135deg, #e8faf2, #f4fbf7);
  border: 1px solid rgba(7, 193, 96, 0.28);
}

.mock-highlight-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.mock-highlight-p {
  margin: 0;
  font-size: 0.62rem;
  line-height: 1.5;
  color: #5c6570;
}

.mock-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.55rem 0;
  gap: 0.5rem;
  color: #c5cad1;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
}

.mock-divider::before,
.mock-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dde1e6);
}

.mock-divider::after {
  background: linear-gradient(90deg, #dde1e6, transparent);
}

.mock-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin: 0.45rem 0 0.55rem;
}

.mock-stat {
  padding: 0.45rem 0.35rem;
  text-align: center;
  border-radius: 6px;
  background: #f6f7f9;
  border: 1px solid #e8eaee;
}

.mock-stat-accent {
  background: var(--accent-soft);
  border-color: rgba(7, 193, 96, 0.25);
}

.mock-stat-val {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #1a1d21;
  letter-spacing: -0.02em;
}

.mock-stat-accent .mock-stat-val {
  color: var(--accent-dark);
}

.mock-stat-label {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.55rem;
  color: #8a9199;
}

.mock-btn {
  display: block;
  width: 100%;
  margin: 0.35rem 0 0.5rem;
  padding: 0.45rem 0.5rem;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #12d06f, #07c160);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(7, 193, 96, 0.35);
}

.mock-end {
  margin: 0;
  text-align: center;
  font-size: 0.55rem;
  color: #a8b0b8;
  letter-spacing: 0.02em;
}

/* 爆款模版 */

.templates {
  background: linear-gradient(180deg, #f0faf5 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .template-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .template-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }
}

.template-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  padding: 0.65rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(26, 29, 33, 0.04);
  text-decoration: none;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.template-card:hover {
  text-decoration: none;
  border-color: rgba(7, 193, 96, 0.45);
  box-shadow: 0 12px 36px rgba(7, 193, 96, 0.12);
  transform: translateY(-3px);
}

.template-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.template-thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #e8eaee;
}

.template-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}

.template-card:hover .template-thumb img {
  transform: scale(1.04);
}

.template-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  padding: 0 0.15rem;
}

.template-hint {
  font-size: 0.8rem;
  color: var(--accent-dark);
  padding: 0 0.15rem;
  margin-top: -0.2rem;
}

/* Sections */

.section {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

/* Features */

.features {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.feature-card:hover {
  border-color: rgba(7, 193, 96, 0.35);
  box-shadow: 0 8px 28px rgba(7, 193, 96, 0.08);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Workflow */

.workflow {
  background: var(--bg);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.steps li {
  position: relative;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.steps h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Scenes */

.scenes {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.scene-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .scene-list {
    grid-template-columns: 1fr;
  }
}

.scene-item {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent-soft), transparent);
  border: 1px solid rgba(7, 193, 96, 0.2);
}

.scene-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.scene-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* FAQ */

.faq-list {
  margin: 0;
}

.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item dt {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.faq-item dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA */

.cta {
  padding: 3.5rem 0;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background: linear-gradient(120deg, #0d3d28, #07c160 90%);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-inner h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: -0.02em;
}

.cta-inner p {
  margin: 0;
  opacity: 0.9;
  max-width: 36rem;
  font-size: 0.95rem;
}

.cta-inner .btn-primary {
  background: #fff;
  color: var(--accent-dark);
  border-color: #fff;
}

.cta-inner .btn-primary:hover {
  background: #eefbf4;
  border-color: #eefbf4;
  color: #047040;
}

button.btn {
  font: inherit;
}

/* 联系演示 · 二维码弹窗 */

.qrcode-dialog {
  margin: auto;
  padding: 0;
  max-width: calc(100vw - 2rem);
  width: min(22rem, 100%);
  border: none;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.qrcode-dialog::backdrop {
  background: rgba(20, 23, 26, 0.55);
  backdrop-filter: blur(4px);
}

.qrcode-dialog-panel {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  border: 1px solid var(--border);
}

.qrcode-dialog-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.qrcode-dialog-close:hover {
  background: var(--border);
  color: var(--text);
}

.qrcode-dialog-title {
  margin: 0 2rem 0.35rem 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.qrcode-dialog-desc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.qrcode-dialog-img-wrap {
  margin: 0 auto 1rem;
  max-width: 280px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  line-height: 0;
}

.qrcode-dialog-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.qrcode-dialog-mail {
  margin: 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.qrcode-dialog-mail a {
  color: var(--accent-dark);
  font-weight: 600;
}

.qrcode-dialog-mail a:hover {
  text-decoration: underline;
}

/* Footer */

.site-footer {
  padding: 2.5rem 0;
  background: #14171a;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.logo-footer {
  color: #fff;
}

.logo-footer:hover {
  color: #b8f5d3;
}

.footer-desc {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  max-width: 22rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
  color: #fff;
}

.footer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.25rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* 外层负责水平居中，避免与 .container 其它布局规则冲突 */
.footer-bottom-wrap {
  display: block;
  text-align: center;
}

.footer-bottom-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  max-width: min(100%, 36rem);
  text-align: center;
  vertical-align: top;
}

.footer-bottom-inner p {
  margin: 0;
  text-align: center;
  max-width: 100%;
}

.footer-company {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
}

.footer-legal {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.footer-icp {
  margin: 0;
  font-size: 0.78rem;
}

.footer-icp a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-icp a:hover {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}
