/* TeruSleep Nexus landing — flashy, no borders, shared chrome bg */
*, *::before, *::after {
  box-sizing: border-box;
  border: none !important;
  outline: none;
}

html { scroll-behavior: smooth; }

body.nx-land {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--nxp-ink, #1a2332);
  font-family: var(--nxp-font, "Noto Sans JP", sans-serif);
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 75% 55% at 8% -5%, rgba(255, 196, 60, 0.55), transparent 52%),
    radial-gradient(ellipse 65% 50% at 100% 0%, rgba(64, 192, 255, 0.45), transparent 48%),
    radial-gradient(ellipse 55% 45% at 70% 90%, rgba(64, 230, 170, 0.32), transparent 48%),
    linear-gradient(175deg, #fff3d0 0%, #dff0ff 42%, #d8fff0 100%);
  -webkit-font-smoothing: antialiased;
}

.nx-wrap {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
}

.nx-h2 {
  margin: 0 0 12px;
  font-family: var(--nxp-display, Nunito, sans-serif);
  font-weight: 900;
  font-size: clamp(1.55rem, 3.6vw, 2.25rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.nx-sub {
  margin: 0 0 28px;
  color: var(--nxp-muted, #5a6a80);
  line-height: 1.8;
  max-width: 38rem;
  font-size: 1.02rem;
}

.nx-eyebrow {
  margin: 0 0 10px;
  color: var(--nxp-join, #12b886);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

/* Buttons — no outline */
.nx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nx-btn:hover { transform: translateY(-2px); }
.nx-btn-soft {
  background: #fff;
  color: var(--nxp-ink) !important;
  box-shadow: 0 14px 36px rgba(26, 35, 50, 0.14);
}
.nx-btn-ghost {
  background: rgba(34, 139, 230, 0.18);
  color: #1864ab !important;
  box-shadow: 0 10px 28px rgba(34, 139, 230, 0.16);
}
.nx-btn-warm {
  background: linear-gradient(105deg, #ff922b, #e67700);
  color: #fff !important;
  box-shadow: 0 14px 36px rgba(230, 119, 0, 0.35);
}
.nx-btn-light {
  background: #fff;
  color: #1a2332 !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* ===== Hero ===== */
.nx-hero {
  position: relative;
  min-height: calc(100vh - 60px);
  min-height: calc(100dvh - 60px);
  display: grid;
  place-items: center;
  padding: 48px 20px 72px;
  overflow: hidden;
}

.nx-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: nx-float 8s ease-in-out infinite;
}
.nx-orb-a {
  width: 280px; height: 280px;
  left: -40px; top: 10%;
  background: radial-gradient(circle, rgba(255,196,60,0.55), transparent 70%);
}
.nx-orb-b {
  width: 340px; height: 340px;
  right: -60px; top: 20%;
  background: radial-gradient(circle, rgba(64,192,255,0.45), transparent 70%);
  animation-delay: -2.5s;
}
.nx-orb-c {
  width: 220px; height: 220px;
  left: 40%; bottom: 5%;
  background: radial-gradient(circle, rgba(18,184,134,0.4), transparent 70%);
  animation-delay: -4s;
}

@keyframes nx-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-22px) scale(1.05); }
}

.nx-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  animation: nx-hero-in 0.9s ease both;
}

@keyframes nx-hero-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

.nx-hero-brand {
  margin: 0 0 16px;
  font-family: var(--nxp-display, Nunito, sans-serif);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--nxp-ink);
}

.nx-hero-title {
  margin: 0 0 18px;
  font-size: clamp(1.45rem, 3.8vw, 2.35rem);
  line-height: 1.45;
  font-weight: 800;
}

.nx-hero-title strong {
  color: var(--nxp-join);
  font-weight: 900;
}

.nx-hero-accent {
  display: inline;
  background: linear-gradient(transparent 62%, #ffe066 62%);
  padding: 0 0.1em;
}

.nx-hero-lead {
  margin: 0 0 28px;
  color: var(--nxp-muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.nx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 14px;
}

.nx-hero-note {
  margin: 0;
  color: var(--nxp-faint);
  font-size: 0.88rem;
}

.nx-scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--nxp-faint);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: nx-bob 1.8s ease-in-out infinite;
}
.nx-scroll-hint i {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, var(--nxp-join), transparent);
  border-radius: 2px;
}
@keyframes nx-bob {
  0%, 100% { opacity: 0.5; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 6px); }
}

/* Story / balance */
.nx-story { padding: 36px 0 72px; }

.nx-balance {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
  align-items: stretch;
}
@media (min-width: 860px) {
  .nx-balance {
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
  }
}

.nx-balance-side {
  position: relative;
  padding: 28px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 40px rgba(26, 35, 50, 0.08);
  overflow: hidden;
  min-height: 180px;
}

.nx-balance-seek {
  background: linear-gradient(160deg, rgba(255,255,255,0.9), rgba(64,192,255,0.18));
}
.nx-balance-host {
  background: linear-gradient(160deg, rgba(255,255,255,0.9), rgba(255,146,43,0.18));
}

.nx-balance-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(26,35,50,0.08);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.nx-balance-side h3 { margin: 0 0 8px; font-size: 1.25rem; }
.nx-balance-side p { margin: 0; color: var(--nxp-muted); line-height: 1.65; }

.nx-balance-icon {
  position: absolute;
  right: 16px;
  bottom: 12px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  opacity: 0.35;
}
.nx-ico-seek {
  background: radial-gradient(circle at 35% 35%, #74c0ff, #228be6);
  animation: nx-spin 12s linear infinite;
}
.nx-ico-host {
  background: radial-gradient(circle at 35% 35%, #ffc078, #e67700);
  animation: nx-spin 14s linear infinite reverse;
}
@keyframes nx-spin {
  to { transform: rotate(360deg); }
}

.nx-balance-mid {
  position: relative;
  display: grid;
  place-items: center;
  gap: 4px;
  min-width: 120px;
  padding: 22px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #12b886, #15aabf);
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 40px rgba(18, 184, 134, 0.35);
  z-index: 1;
}
.nx-balance-mid strong {
  font-family: var(--nxp-display);
  font-size: 1.2rem;
  font-weight: 900;
}
.nx-balance-mid span { font-size: 0.78rem; opacity: 0.9; }
.nx-balance-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: rgba(18, 184, 134, 0.25);
  animation: nx-pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes nx-pulse {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

.nx-story-paths {
  display: grid;
  gap: 12px;
}
@media (min-width: 720px) {
  .nx-story-paths { grid-template-columns: 1fr 1fr; }
}
.nx-story-path {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 14px 34px rgba(26,35,50,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nx-story-path:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(26,35,50,0.12);
}
.nx-story-path span {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--nxp-join);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.nx-story-path-host span { color: var(--nxp-warm); }
.nx-story-path strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.nx-story-path em {
  font-style: normal;
  color: var(--nxp-muted);
  font-size: 0.92rem;
}

/* Pain */
.nx-pain { padding: 24px 0 72px; }
.nx-pain-row {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}
@media (min-width: 800px) {
  .nx-pain-row { grid-template-columns: repeat(3, 1fr); }
}
.nx-pain-item {
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 12px 30px rgba(26,35,50,0.06);
  animation: nx-rise 0.7s ease both;
  animation-delay: calc(var(--i) * 0.12s);
}
.nx-pain-item h3 { margin: 0 0 8px; font-size: 1.08rem; }
.nx-pain-item p { margin: 0; color: var(--nxp-muted); line-height: 1.7; font-size: 0.95rem; }
.nx-pain-bridge {
  margin: 0;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  color: var(--nxp-muted);
  line-height: 1.85;
  box-shadow: 0 12px 28px rgba(26,35,50,0.06);
}
.nx-pain-bridge mark {
  background: linear-gradient(transparent 58%, #ffe066 58%);
  color: inherit;
  padding: 0 0.08em;
}

@keyframes nx-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* Hub diagram */
.nx-hub { padding: 40px 0 72px; }

.nx-diagram {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 28px 12px;
  border-radius: 28px;
  background: rgba(255,255,255,0.55);
  box-shadow: inset 0 0 0 0 transparent, 0 18px 50px rgba(26,35,50,0.07);
}

.nx-d-node {
  min-width: 132px;
  padding: 16px 14px;
  border-radius: 18px;
  text-align: center;
  background: #fff;
  box-shadow: 0 10px 28px rgba(26,35,50,0.1);
  opacity: 0.35;
  transform: scale(0.92);
  transition: opacity .4s ease, transform .4s ease, box-shadow .4s ease;
}
.nx-d-node.is-on {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 14px 36px rgba(18, 184, 134, 0.28);
}
.nx-d-node span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--nxp-faint);
  margin-bottom: 4px;
}
.nx-d-node strong {
  font-size: 0.95rem;
  font-weight: 800;
}
.nx-d-hub {
  background: linear-gradient(145deg, #12b886, #15aabf);
  color: #fff;
}
.nx-d-hub span { color: rgba(255,255,255,0.85); }
.nx-d-hub.is-on {
  box-shadow: 0 16px 40px rgba(18, 184, 134, 0.45);
  animation: nx-hub-glow 1.4s ease-in-out infinite alternate;
}
@keyframes nx-hub-glow {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

.nx-d-arrow {
  width: 28px;
  height: 4px;
  border-radius: 4px;
  background: rgba(26,35,50,0.12);
  position: relative;
  overflow: hidden;
  opacity: 0.3;
  transition: opacity .3s ease;
}
.nx-d-arrow.is-on { opacity: 1; }
.nx-d-arrow::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--nxp-join));
  animation: nx-dash 1.1s linear infinite;
}
@keyframes nx-dash {
  from { transform: translateX(-120%); }
  to { transform: translateX(280%); }
}

@media (max-width: 720px) {
  .nx-d-arrow { width: 100%; height: 18px; background: transparent; }
  .nx-d-arrow::after {
    inset: 0;
    width: 4px;
    margin: 0 auto;
    background: linear-gradient(180deg, transparent, var(--nxp-join));
    animation: nx-dash-v 1.1s linear infinite;
  }
  @keyframes nx-dash-v {
    from { transform: translateY(-100%); }
    to { transform: translateY(200%); }
  }
  .nx-diagram { flex-direction: column; }
  .nx-d-node { width: min(280px, 100%); }
}

.nx-diagram-caption {
  text-align: center;
  color: var(--nxp-muted);
  margin: 0 0 28px;
  font-size: 0.95rem;
}

.nx-hub-points {
  display: grid;
  gap: 12px;
}
@media (min-width: 800px) {
  .nx-hub-points { grid-template-columns: repeat(3, 1fr); }
}
.nx-hub-points article {
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 12px 30px rgba(26,35,50,0.06);
}
.nx-hub-points h3 { margin: 0 0 8px; font-size: 1.02rem; }
.nx-hub-points p { margin: 0; color: var(--nxp-muted); line-height: 1.7; font-size: 0.94rem; }

/* Pack */
.nx-pack { padding: 24px 0 72px; }
.nx-pack-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 800px) {
  .nx-pack-grid { grid-template-columns: repeat(3, 1fr); }
}
.nx-pack-item {
  position: relative;
  overflow: hidden;
  padding: 26px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 14px 36px rgba(26,35,50,0.08);
  animation: nx-rise 0.7s ease both;
  animation-delay: calc(var(--i) * 0.12s);
}
.nx-pack-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  right: -30px;
  top: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18,184,134,0.28), transparent 70%);
  animation: nx-float 6s ease-in-out infinite;
}
.nx-pack-item h3 { margin: 0 0 10px; position: relative; }
.nx-pack-item p { margin: 0; color: var(--nxp-muted); line-height: 1.75; position: relative; }

/* Compare */
.nx-compare { padding: 24px 0 72px; }
.nx-cmp {
  display: grid;
  gap: 14px;
  align-items: stretch;
}
@media (min-width: 800px) {
  .nx-cmp {
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
  }
}
.nx-cmp-col {
  padding: 26px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 12px 30px rgba(26,35,50,0.06);
}
.nx-cmp-win {
  background: linear-gradient(165deg, rgba(255,255,255,0.95), rgba(18,184,134,0.18));
  box-shadow: 0 18px 44px rgba(18,184,134,0.18);
}
.nx-cmp-col h3 { margin: 0 0 14px; font-size: 1.15rem; }
.nx-cmp-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.nx-cmp-col li {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(26,35,50,0.05);
  line-height: 1.5;
  font-size: 0.95rem;
}
.nx-cmp-win li {
  background: rgba(18,184,134,0.12);
  font-weight: 700;
  color: #087f5b;
}
.nx-cmp-vs {
  font-family: var(--nxp-display);
  font-weight: 900;
  font-size: 1.4rem;
  text-align: center;
  color: var(--nxp-faint);
}

/* Host */
.nx-host { padding: 24px 0 64px; }
.nx-steps {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.nx-steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: start;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 12px 30px rgba(26,35,50,0.06);
  animation: nx-rise 0.65s ease both;
  animation-delay: calc(var(--i) * 0.12s);
}
.nx-steps > li > span {
  font-family: var(--nxp-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--nxp-join);
}
.nx-steps h3 { margin: 0 0 6px; font-size: 1.05rem; }
.nx-steps p { margin: 0; color: var(--nxp-muted); line-height: 1.65; }
.nx-host-cta { text-align: center; }
.nx-host-note {
  margin: 14px 0 0;
  color: var(--nxp-faint);
  font-size: 0.9rem;
}

/* Final */
.nx-final { padding: 12px 18px 72px; }
.nx-final-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 48px 28px;
  border-radius: 32px;
  text-align: center;
  color: #fff;
  background: linear-gradient(115deg, #12b886 0%, #15aabf 45%, #228be6 100%);
  box-shadow: 0 24px 60px rgba(18, 184, 134, 0.3);
  position: relative;
  overflow: hidden;
}
.nx-final-inner::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  top: -80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  animation: nx-float 7s ease-in-out infinite;
}
.nx-final-brand {
  position: relative;
  margin: 0 0 10px;
  font-family: var(--nxp-display);
  font-weight: 900;
  font-size: 1.35rem;
}
.nx-final h2 {
  position: relative;
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  line-height: 1.4;
}
.nx-final p {
  position: relative;
  margin: 0 0 26px;
  opacity: 0.95;
  line-height: 1.8;
}
.nx-final .nx-btn { position: relative; }

.nx-story,
.nx-pain,
.nx-hub,
.nx-pack,
.nx-compare,
.nx-host,
.nx-paths,
.nx-join,
.nx-host-block,
.nx-support,
.nx-final,
.nx-faq {
  scroll-margin-top: 72px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ===== 新LP：短く視覚的 ===== */
.nx-paths,
.nx-join,
.nx-host-block,
.nx-support {
  padding: 28px 0 64px;
}

.nx-path-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
@media (min-width: 720px) {
  .nx-path-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}
.nx-path-card {
  display: grid;
  gap: 8px;
  padding: 28px 24px;
  border-radius: 28px;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 16px 40px rgba(26,35,50,0.1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nx-path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(26,35,50,0.14);
}
.nx-path-join { background: linear-gradient(160deg, #fff, rgba(64,192,255,0.2)); }
.nx-path-host { background: linear-gradient(160deg, #fff, rgba(255,146,43,0.2)); }
.nx-path-card strong { font-size: 1.45rem; font-weight: 900; }
.nx-path-card p { margin: 0; color: var(--nxp-muted); line-height: 1.55; }
.nx-path-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 4px;
}
.nx-path-mark-join {
  background: radial-gradient(circle at 35% 35%, #74c0ff, #228be6);
}
.nx-path-mark-host {
  background: radial-gradient(circle at 35% 35%, #ffc078, #e67700);
}

.nx-visual-row {
  display: grid;
  gap: 22px;
  align-items: center;
  margin: 24px 0 20px;
}
@media (min-width: 860px) {
  .nx-visual-row { grid-template-columns: 1.1fr 0.9fr; gap: 28px; }
}

.nx-demo-board {
  padding: 16px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 16px 40px rgba(26,35,50,0.1);
}
.nx-demo-board-bar {
  font-family: var(--nxp-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--nxp-join);
  margin-bottom: 12px;
}
.nx-demo-board-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(26,35,50,0.08);
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
}
.nx-demo-board-card.is-in {
  animation: nx-card-pop 0.7s ease both;
  box-shadow: 0 14px 32px rgba(18,184,134,0.2);
}
@keyframes nx-card-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.nx-demo-board-card strong { font-size: 1.05rem; }
.nx-demo-board-card em {
  font-style: normal;
  color: var(--nxp-muted);
  font-size: 0.88rem;
}
.nx-pill {
  display: inline-flex;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(18,184,134,0.16);
  color: #0b9b72;
  font-size: 0.72rem;
  font-weight: 800;
}
.nx-pill.soft {
  background: rgba(34,139,230,0.12);
  color: #1864ab;
}
.nx-mini-cta {
  margin-top: 8px;
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--nxp-join);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.nx-steps-lite {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.nx-steps-lite li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 10px 28px rgba(26,35,50,0.07);
}
.nx-steps-lite > li > span {
  font-family: var(--nxp-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--nxp-join);
}
.nx-steps-lite strong { display: block; margin-bottom: 4px; }
.nx-steps-lite p { margin: 0; color: var(--nxp-muted); font-size: 0.92rem; }

.nx-center-cta { text-align: center; margin: 8px 0 0; }

.nx-hub-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}
.nx-hub-pills span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 10px 24px rgba(26,35,50,0.08);
  font-weight: 800;
  font-size: 0.88rem;
  color: #087f5b;
}

.nx-host-grid {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
}
@media (min-width: 800px) {
  .nx-host-grid { grid-template-columns: 1fr 1fr; }
}
.nx-host-point {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 12px 30px rgba(26,35,50,0.08);
  animation: nx-rise 0.65s ease both;
  animation-delay: calc(var(--i) * 0.1s);
}
.nx-host-point strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.nx-host-point p {
  margin: 0;
  color: var(--nxp-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}
.nx-host-point small {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--nxp-faint);
}
.nx-host-point-mc {
  background: linear-gradient(160deg, #fff, rgba(18,184,134,0.18));
  grid-column: 1 / -1;
}

.nx-demo-dash {
  margin: 8px 0 28px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(26, 35, 50, 0.92);
  color: #eef2f7;
  box-shadow: 0 18px 44px rgba(26,35,50,0.25);
}
.nx-demo-dash-bar {
  font-size: 0.82rem;
  font-weight: 800;
  color: #3dd9c4;
  margin-bottom: 12px;
}
.nx-demo-dash-row {
  display: grid;
  gap: 12px;
}
@media (min-width: 720px) {
  .nx-demo-dash-row { grid-template-columns: 1.1fr 0.9fr; }
}
.nx-demo-dash-cal,
.nx-demo-dash-list {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
}
.nx-demo-dash-cal > span,
.nx-demo-dash-list > span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.nx-demo-dash-cells {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.nx-demo-dash-cells i {
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: block;
}
.nx-demo-dash-cells i.busy { background: rgba(116,143,252,0.55); }
.nx-demo-dash-cells i.free { background: rgba(18,184,134,0.2); }
.nx-demo-dash-cells i.is-pulse {
  background: #12b886;
  animation: nx-spot-soft 1.2s ease-in-out infinite;
}
@keyframes nx-spot-soft {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(18,184,134,0.5); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(18,184,134,0); }
}
.nx-demo-dash-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
}
.nx-demo-dash-item em {
  font-style: normal;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e67700;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.nx-host-cta { text-align: center; }
.nx-host-note {
  margin: 12px 0 0;
  color: var(--nxp-faint);
  font-size: 0.9rem;
}
.nx-host-note a { color: var(--nxp-accent); font-weight: 700; }

.nx-support-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 28px 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 16px 40px rgba(26,35,50,0.1);
}
.nx-btn-discord {
  background: #5865f2;
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(88, 101, 242, 0.35);
}

/* Q&A — LP末尾 */
.nx-faq {
  padding: 40px 0 88px;
}
.nx-inline-link {
  color: #1864ab;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nx-faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 18px;
}
.nx-faq-filter {
  appearance: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--nxp-ink, #1a2332);
  font: inherit;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 8px 20px rgba(26, 35, 50, 0.06);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.nx-faq-filter em {
  font-style: normal;
  font-weight: 800;
  font-size: 0.78rem;
  opacity: 0.55;
}
.nx-faq-filter:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.85);
}
.nx-faq-filter.is-on {
  background: linear-gradient(115deg, #12b886 0%, #15aabf 55%, #228be6 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(18, 184, 134, 0.28);
}
.nx-faq-filter.is-on em { opacity: 0.85; }
.nx-faq-empty {
  margin: 12px 0 0;
  color: var(--nxp-muted, #5a6a80);
  font-weight: 700;
}
.nx-faq-list {
  display: grid;
  gap: 0;
  margin-top: 8px;
}
.nx-faq-item {
  background: transparent;
}
.nx-faq-item + .nx-faq-item {
  box-shadow: inset 0 1px 0 rgba(26, 35, 50, 0.08);
}
.nx-faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--nxp-ink, #1a2332);
  user-select: none;
}
.nx-faq-q::-webkit-details-marker { display: none; }
.nx-faq-q::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 139, 230, 0.14);
  color: #1864ab;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}
.nx-faq-item[open] .nx-faq-q::after {
  content: "−";
  background: rgba(18, 184, 134, 0.18);
  color: #0b7a56;
}
.nx-faq-a {
  padding: 0 4px 20px;
  color: var(--nxp-muted, #5a6a80);
  line-height: 1.8;
  font-size: 0.98rem;
  max-width: 46rem;
}
.nx-faq-a a {
  color: #1864ab;
  font-weight: 700;
}
.nx-faq-more {
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  color: var(--nxp-muted, #5a6a80);
  font-weight: 700;
}

.nx-support-fab {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px 0 10px;
  border-radius: 999px;
  background: #5865f2;
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 14px 36px rgba(88, 101, 242, 0.4);
  transition: transform .2s ease;
}
.nx-support-fab:hover { transform: translateY(-2px); }
.nx-support-fab-ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.2);
  font-weight: 900;
}
@media (max-width: 640px) {
  .nx-support-fab-txt { display: none; }
  .nx-support-fab { padding: 0; width: 52px; height: 52px; justify-content: center; }
  .nx-support-fab-ico { width: 52px; height: 52px; background: transparent; }
}

@media (max-width: 640px) {
  .nx-wrap { width: calc(100% - 28px); }
  .nx-hero { padding-top: 36px; }
  .nx-final-inner { padding: 36px 20px; }
}
