:root {
  color-scheme: dark;
  --wb-bg: #05080f;
  --wb-panel: rgba(13, 20, 34, 0.72);
  --wb-panel-solid: #0b1220;
  --wb-panel-soft: rgba(8, 14, 25, 0.58);
  --wb-line: rgba(56, 189, 248, 0.14);
  --wb-line-strong: rgba(56, 189, 248, 0.34);
  --wb-cyan: #22d3ee;
  --wb-sky: #38bdf8;
  --wb-indigo: #6366f1;
  --wb-success: #34d399;
  --wb-text: #e7eef8;
  --wb-muted: #8296b0;
  --wb-muted-2: #5b6b82;
  --wb-gradient: linear-gradient(135deg, #22d3ee 0%, #38bdf8 45%, #6366f1 100%);
  --wb-radius: 18px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--wb-text);
  background: var(--wb-bg);
  font: 15px/1.72 "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
body::before {
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(56, 189, 248, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.075) 1px, transparent 1px);
  background-size: 36px 36px, 36px 36px, 180px 180px, 180px 180px;
  -webkit-mask-image: radial-gradient(ellipse 94% 86% at 50% 0%, #000 42%, transparent 100%);
  mask-image: radial-gradient(ellipse 94% 86% at 50% 0%, #000 42%, transparent 100%);
}
body::after {
  background:
    radial-gradient(circle at 4% -8%, rgba(34, 211, 238, 0.16), transparent 29%),
    radial-gradient(circle at 102% 92%, rgba(99, 102, 241, 0.14), transparent 31%),
    radial-gradient(circle at 56% 45%, rgba(56, 189, 248, 0.055), transparent 26%);
}

::selection { background: rgba(34, 211, 238, 0.26); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb {
  border: 2px solid var(--wb-bg);
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.2);
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
.container { width: min(calc(100% - 48px), var(--max-width)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--wb-line);
  background: rgba(6, 10, 18, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--wb-text);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name { font-size: 15px; }
.brand-subtitle {
  margin-top: 3px;
  color: var(--wb-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.24));
}
.brand-logo { grid-area: 1 / 1; width: 100%; height: 100%; display: block; object-fit: contain; }
.brand-logo-light { display: none; }
.nav-links { display: flex; align-items: center; gap: 28px; color: var(--wb-muted); font-size: 13px; font-weight: 650; }
.nav-links a { transition: color 180ms ease; }
.nav-links a:hover { color: var(--wb-cyan); }
.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.utility-toggle {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--wb-line);
  border-radius: 10px;
  color: var(--wb-muted);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font: 600 13px/1 system-ui, sans-serif;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}
.utility-toggle.language {
  width: 52px;
  grid-template-columns: 15px auto;
  gap: 3px;
}
.utility-toggle b { font-size: 10px; }
.utility-toggle:hover,
.utility-toggle:focus-visible {
  border-color: var(--wb-line-strong);
  color: var(--wb-cyan);
  background: rgba(34, 211, 238, 0.06);
  outline: none;
  transform: translateY(-1px);
}
.theme-icon {
  width: 18px;
  height: 18px;
  display: none;
}

body.theme-light .theme-icon-moon { display: block; }
body.theme-dark .theme-icon-sun { display: block; }
.nav-cta,
.button {
  min-height: 40px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: var(--wb-gradient);
  color: #04121c;
  box-shadow: 0 4px 20px rgba(34, 211, 238, 0.24);
  font-weight: 750;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.nav-cta { justify-self: end; min-height: 38px; padding-inline: 15px; font-size: 13px; }
.button { min-height: 46px; padding-inline: 20px; }
.button:hover,
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 7px 26px rgba(34, 211, 238, 0.36); }
.button-secondary {
  border: 1px solid var(--wb-line);
  background: rgba(34, 211, 238, 0.05);
  color: var(--wb-cyan);
  box-shadow: none;
}
.button-secondary:hover { background: rgba(34, 211, 238, 0.12); box-shadow: 0 0 20px rgba(34, 211, 238, 0.12); }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--wb-line);
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: 30px;
  right: -280px;
  border: 1px solid var(--wb-line);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(34, 211, 238, 0.035), 0 0 0 160px rgba(99, 102, 241, 0.02);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: clamp(24px, 5vw, 42px);
  padding-block: 86px;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--wb-cyan);
  font: 750 11px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.13em;
}
.hero-kicker-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-kicker-row .eyebrow { margin: 0; }
.free-badge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(52, 211, 153, 0.34);
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.08);
  color: var(--wb-success);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
}
.free-badge::before,
.hero-free-note::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--wb-success);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.1);
}
.hero h1,
.article-hero h1 {
  margin: 0;
  color: var(--wb-text);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 790;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.hero h1 em {
  background: var(--wb-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}
.hero-lead,
.article-hero p:last-child {
  max-width: 720px;
  margin: 25px 0 0;
  color: var(--wb-muted);
  font-size: 18px;
  line-height: 1.8;
}
.hero-actions,
.article-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-free-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 14px 0 0;
  color: var(--wb-muted);
  font-size: 13px;
  line-height: 1.55;
}
.hero-free-note::before {
  width: 6px;
  height: 6px;
  box-shadow: none;
}
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 45px; }
.hero-proof span {
  padding-top: 12px;
  border-top: 1px solid var(--wb-line);
  color: var(--wb-muted);
  font-size: 16px;
  line-height: 2.55;
}
.drawing-canvas {
  width: min(100%, 560px);
  height: auto;
  aspect-ratio: 14 / 11;
  justify-self: center;
  cursor: grab;
  touch-action: none;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.32));
}
.drawing-canvas:active { cursor: grabbing; }

.section {
  padding: 104px 0;
  border-top: 1px solid var(--wb-line);
}
.section-muted { background: rgba(8, 14, 25, 0.44); }
.section-heading { max-width: 1050px; margin-bottom: 42px; }
.section h2,
.cta-band h2 {
  margin: 0;
  color: var(--wb-text);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.17;
  letter-spacing: -0.04em;
}
.section-heading p:last-child,
.split > div > p,
.cta-band p { color: var(--wb-muted); font-size: 17px; line-height: 1.8; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card,
.step-card,
.faq-card,
.checklist li,
.article-content {
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius);
  background: var(--wb-panel);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.feature-card,
.faq-card { padding: 28px; }
.feature-card,
.step-card,
.faq-card { transition: transform 200ms ease, border-color 200ms ease, background 200ms ease; }
.feature-card:hover,
.step-card:hover,
.faq-card:hover { transform: translateY(-3px); border-color: var(--wb-line-strong); background: rgba(18, 29, 48, 0.8); }
.feature-card strong { display: block; margin-bottom: 10px; color: var(--wb-text); font-size: 19px; }
.feature-card p,
.step-card p,
.faq-card p { margin: 0; color: var(--wb-muted); }
.feature-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border: 1px solid var(--wb-line);
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.08);
  color: var(--wb-cyan);
  font: 750 12px ui-monospace, monospace;
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: steps; }
.step-card { min-height: 210px; padding: 26px; counter-increment: steps; }
.step-card::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 42px;
  color: var(--wb-cyan);
  font: 750 11px ui-monospace, monospace;
  letter-spacing: 0.1em;
}
.step-card strong { display: block; margin-bottom: 9px; color: var(--wb-text); font-size: 18px; }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 58px; align-items: start; }
.checklist { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding: 18px 20px 18px 50px; color: var(--wb-muted); }
.checklist li::before { content: "✓"; position: absolute; top: 17px; left: 20px; color: var(--wb-success); font-weight: 900; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faq-card-free {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  align-items: start;
  gap: 28px;
  border-color: rgba(52, 211, 153, 0.3);
  background: linear-gradient(100deg, rgba(52, 211, 153, 0.075), var(--wb-panel) 52%);
}
.faq-card h3 { margin: 0 0 10px; color: var(--wb-text); font-size: 17px; }
.faq-card-free h3 { margin: 0; color: var(--wb-success); }
.faq-card a,
.article-content a:not(.button) { color: var(--wb-cyan); }

.article-hero {
  position: relative;
  padding: 108px 0 82px;
  overflow: hidden;
  border-bottom: 1px solid var(--wb-line);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(99, 102, 241, 0.05) 52%, transparent);
}
.article-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -130px;
  top: -160px;
  border: 1px solid var(--wb-line);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(34, 211, 238, 0.025), 0 0 0 120px rgba(99, 102, 241, 0.018);
}
.article-hero .container { position: relative; z-index: 1; }
.article-hero h1 { font-size: clamp(40px, 5vw, 66px); }
.article-content { padding: clamp(30px, 5vw, 62px); }
.article-content h2 { margin: 54px 0 16px; color: var(--wb-text); font-size: clamp(25px, 3vw, 35px); line-height: 1.3; }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { margin: 30px 0 8px; color: var(--wb-cyan); font-size: 19px; }
.article-content p,
.article-content li { color: var(--wb-muted); }
.article-content ul { padding-left: 22px; }
.article-content li + li { margin-top: 8px; }
.notice {
  margin-top: 32px;
  padding: 18px 20px;
  border: 1px solid var(--wb-line);
  border-left: 3px solid var(--wb-cyan);
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.055);
  color: var(--wb-muted);
}
.notice strong { color: var(--wb-text); }

.cta-band {
  position: relative;
  padding: 86px 0;
  overflow: hidden;
  border-top: 1px solid var(--wb-line);
  border-bottom: 1px solid var(--wb-line);
  background: radial-gradient(circle at 50% 120%, rgba(34, 211, 238, 0.18), transparent 58%), rgba(8, 14, 25, 0.5);
  text-align: center;
}
.cta-band h2 { max-width: 760px; margin-inline: auto; }
.cta-band p { max-width: 680px; margin: 18px auto 28px; }
@media (min-width: 1024px) {
  .cta-band h2:lang(zh-CN) { max-width: none; white-space: nowrap; }
}

.site-footer { padding: 36px 0; background: #03050a; color: var(--wb-muted-2); font-size: 13px; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--wb-muted); transition: color 180ms ease; }
.footer-links a:hover { color: var(--wb-cyan); }

body.theme-light {
  color-scheme: light;
  --wb-bg: #f4f8fc;
  --wb-panel: rgba(255, 255, 255, 0.78);
  --wb-panel-solid: #ffffff;
  --wb-panel-soft: rgba(240, 246, 252, 0.82);
  --wb-line: rgba(18, 85, 130, 0.16);
  --wb-line-strong: rgba(8, 145, 178, 0.34);
  --wb-cyan: #0891b2;
  --wb-sky: #0284c7;
  --wb-indigo: #4f46e5;
  --wb-success: #059669;
  --wb-text: #0d1b2e;
  --wb-muted: #4c5f7a;
  --wb-muted-2: #8496ad;
}
body.theme-light::before {
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.085) 1px, transparent 1px);
}
body.theme-light::after { opacity: 0.42; }
body.theme-light .site-header { background: rgba(255, 255, 255, 0.82); }
body.theme-light .brand-logo-dark { display: none; }
body.theme-light .brand-logo-light { display: block; }
body.theme-light .utility-toggle,
body.theme-light .marketing-menu-toggle {
  background: rgba(13, 30, 55, 0.04);
}
body.theme-light .section-muted { background: rgba(225, 236, 247, 0.52); }
body.theme-light .feature-card:hover,
body.theme-light .step-card:hover,
body.theme-light .faq-card:hover { background: rgba(255, 255, 255, 0.96); }
body.theme-light .faq-card-free {
  background: linear-gradient(100deg, rgba(5, 150, 105, 0.08), rgba(255, 255, 255, 0.82) 52%);
}
body.theme-light .article-hero {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(79, 70, 229, 0.06) 52%, transparent);
}
body.theme-light .cta-band {
  background: radial-gradient(circle at 50% 120%, rgba(8, 145, 178, 0.16), transparent 58%), rgba(229, 238, 248, 0.7);
}
body.theme-light .site-footer { background: #e9f0f7; }

@media (max-width: 960px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "links links";
    column-gap: 18px;
    row-gap: 0;
    padding-top: 8px;
  }
  .brand { grid-area: brand; }
  .nav-actions { grid-area: actions; }
  .nav-links {
    grid-area: links;
    width: 100%;
    min-width: 0;
    gap: 22px;
    overflow-x: auto;
    padding: 2px 0 9px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a {
    flex: 0 0 auto;
    padding-block: 7px;
    white-space: nowrap;
  }
  .hero-grid,
  .split { grid-template-columns: 1fr; }
  .hero-grid { min-height: 0; padding-block: 72px; }
  .drawing-canvas { width: min(100%, 560px); }
  .card-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 30px), var(--max-width)); }
  .nav { min-height: 66px; column-gap: 12px; row-gap: 0; padding-top: 7px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-subtitle { font-size: 9px; }
  .nav-cta { min-height: 36px; padding-inline: 12px; }
  .nav-links { gap: 18px; padding-bottom: 7px; font-size: 12px; }
  .hero-grid { padding-block: 58px; }
  .hero h1,
  .article-hero h1 { font-size: 39px; }
  .hero-kicker-row { align-items: flex-start; flex-direction: column; gap: 10px; }
  .hero-free-note { align-items: flex-start; }
  .hero-proof,
  .steps,
  .faq-grid { grid-template-columns: 1fr; }
  .faq-card-free { grid-column: auto; display: block; }
  .faq-card-free h3 { margin-bottom: 10px; }
  .section { padding-block: 72px; }
  .article-hero { padding-block: 72px 58px; }
  .article-content { border-radius: 14px; }
  .footer-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* === Mobile hamburger menu === */
.marketing-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--wb-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--wb-text);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.marketing-menu-toggle:hover,
.marketing-menu-toggle:focus-visible {
  background: rgba(34, 211, 238, 0.08);
  border-color: var(--wb-line-strong);
  outline: none;
}

.marketing-menu-toggle-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}

.marketing-menu-toggle-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.18s ease, top 0.22s ease;
}

.marketing-menu-toggle-icon span:nth-child(1) { top: 0; }
.marketing-menu-toggle-icon span:nth-child(2) { top: 6px; }
.marketing-menu-toggle-icon span:nth-child(3) { top: 12px; }

.marketing-menu-open .marketing-menu-toggle-icon span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.marketing-menu-open .marketing-menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.marketing-menu-open .marketing-menu-toggle-icon span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

@keyframes marketing-menu-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  /* Switch to single-row layout: brand | toggle (CTA hidden, moved into menu) */
  .nav {
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    padding-top: 8px;
  }
  .brand { grid-column: 1; grid-row: 1; }
  .nav-actions { grid-column: 2; grid-row: 1; gap: 6px; }
  .utility-toggle { width: 36px; height: 36px; }
  .utility-toggle.language { width: 46px; }
  .marketing-menu-toggle { grid-column: 3; grid-row: 1; display: inline-flex; }
  .nav-cta { display: none; }
  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: auto;
    margin-top: 8px;
    padding: 10px;
    border: 1px solid var(--wb-line);
    border-radius: 14px;
    background: var(--wb-panel-solid, #0b1220);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
    animation: marketing-menu-in 0.18s ease-out;
  }
  body.theme-light .nav-links {
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
  }
  .marketing-menu-open .nav-links { display: flex; }
  .nav-links a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--wb-text);
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.15s ease, color 0.15s ease;
  }
  body.theme-light .nav-links a {
    background: rgba(15, 23, 42, 0.04);
  }
  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--wb-cyan);
    background: rgba(34, 211, 238, 0.1);
  }
  /* CTA appears as last item in the dropdown menu */
  .nav-links::after {
    content: var(--mobile-cta-label, "体验工作台");
    display: block;
    margin-top: 6px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--wb-gradient);
    color: #04121c;
    text-align: center;
    font-weight: 750;
    cursor: pointer;
    pointer-events: auto;
  }
  .nav-links::after:hover { transform: translateY(-1px); }
  .nav-links a:last-of-type { margin-bottom: 4px; }
}
