.event-journey-react {
  padding-block: clamp(76px, 9vw, 110px);
  background: #fff;
}

.hj-journey-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 40px;
}

.hj-journey-head .section-title {
  max-width: 720px;
}

.event-journey-react button {
  appearance: none;
  font: inherit;
}

.hj-journey-shell {
  display: grid;
  grid-template-columns: minmax(250px, .66fr) minmax(0, 1.34fr);
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, .11);
  border-radius: 8px;
  background: #f3f6fa;
}

.hj-journey-steps {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #fff;
  border-right: 1px solid rgba(16, 24, 40, .11);
}

.hj-journey-step {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 0;
  padding: 13px 18px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(16, 24, 40, .11);
  border-radius: 0;
  color: #64748b;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.hj-journey-step:last-child {
  border-bottom: 0;
}

.hj-journey-step:focus {
  outline: 0;
  box-shadow: none;
}

.hj-journey-step:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: -2px;
}

.hj-journey-step.is-active {
  color: #0f172a;
  background: #f8faff;
}

.hj-step-index {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  color: #64748b;
  font-family: "Space Grotesk", sans-serif;
  font-size: .74rem;
  font-weight: 750;
}

.hj-journey-step.is-active .hj-step-index {
  color: #fff;
  background: #2563eb;
  border-color: #2563eb;
}

.hj-journey-step strong,
.hj-journey-step small {
  display: block;
}

.hj-journey-step strong {
  color: inherit;
  font-size: .95rem;
}

.hj-journey-step small {
  margin-top: 5px;
  color: #64748b;
  line-height: 1.35;
}

.hj-step-progress {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: #2563eb;
  transform: scaleX(0);
  transform-origin: left;
  animation: hjJourneyProgress 6.5s linear forwards;
}

.hj-journey-shell.is-paused .hj-step-progress {
  animation-play-state: paused;
}

@keyframes hjJourneyProgress {
  to { transform: scaleX(1); }
}

.hj-demo-stage {
  position: relative;
  min-width: 0;
  min-height: 640px;
  display: grid;
  place-items: center;
  padding: 22px 34px;
  overflow: hidden;
  isolation: isolate;
}

.hj-demo-stage::before,
.hj-demo-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hj-demo-stage::before {
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 50%;
}

.hj-demo-stage::after {
  width: 88%;
  height: 1px;
  background: rgba(15, 23, 42, .08);
  box-shadow: 0 -155px 0 rgba(15, 23, 42, .05), 0 155px 0 rgba(15, 23, 42, .05);
}

.hj-device {
  position: relative;
  width: min(280px, 100%);
  padding: 8px;
  border-radius: 42px;
  background: #0d1422;
  box-shadow: 0 36px 85px rgba(15, 23, 42, .25);
}

.hj-device-island {
  position: absolute;
  z-index: 20;
  top: 15px;
  left: 50%;
  width: 74px;
  height: 21px;
  border-radius: 999px;
  background: #0d1422;
  transform: translateX(-50%);
  pointer-events: none;
}

.hj-device-screen {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 844;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
}

.hj-device-screen > .hj-app-screen,
.hj-device-screen > .hj-story-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 390px;
  height: 844px;
  transform: translate(var(--hj-canvas-x, 0), var(--hj-canvas-y, 0)) scale(var(--hj-canvas-scale, 1));
  transform-origin: top left;
}

.hj-app-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #0f172a;
  background: #fff;
  font-family: "Inter", sans-serif;
}

.hj-status {
  position: relative;
  z-index: 12;
  height: 47px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 10px 42px 0;
  color: #0f172a;
  font-size: 16px;
  font-weight: 900;
}

.hj-status.is-light {
  color: #fff;
}

.hj-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 3.5px;
}

.hj-icon-button {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #0f172a;
  background: transparent;
  cursor: pointer;
}

.hj-icon-button.is-surface {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.hj-home-header {
  height: 50px;
  display: grid;
  grid-template-columns: 68px 1fr 68px;
  align-items: center;
  padding: 0 11px;
}

.hj-wordmark {
  width: 62px;
  height: 34px;
  justify-self: center;
  object-fit: contain;
}

.hj-header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.hj-notification-dot {
  position: absolute;
  top: 0;
  right: -1px;
  min-width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  padding-inline: 3px;
  border: 1.5px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: #2563eb;
  font-size: 8px;
  font-weight: 850;
}

.hj-home-tabs {
  position: relative;
  height: 49px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #e2e8f0;
}

.hj-home-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #64748b;
  font-size: 10px;
  font-weight: 700;
}

.hj-home-tab.is-active {
  color: #0f172a;
  font-weight: 900;
}

.hj-home-tab.is-active::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 2px;
  border-radius: 999px;
  background: #2563eb;
}

.hj-feed-scroll {
  height: calc(100% - 197px);
  overflow: hidden;
}

.hj-lens-row {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  overflow: hidden;
  white-space: nowrap;
}

.hj-lens {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #0f172a;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
}

.hj-lens:first-child {
  font-weight: 800;
}

.hj-lens-check {
  color: #2563eb;
}

.hj-event-card {
  width: calc(100% - 24px);
  display: block;
  margin: 0 12px 14px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  color: #0f172a;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.hj-event-cover {
  position: relative;
  height: 190px;
  display: block;
  overflow: hidden;
  background: #f8fafc;
}

.hj-event-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hj-party-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-inline: 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  color: #fff;
  background: #f97316;
  font-size: 11px;
  font-weight: 900;
}

.hj-party-badge.is-soft {
  position: static;
  height: 28px;
  border-color: #f97316;
  color: #f97316;
  background: rgba(249, 115, 22, .14);
}

.hj-card-bookmark {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #e5e7eb;
  background: rgba(0, 0, 0, .35);
}

.hj-event-card-body {
  display: block;
  padding: 14px;
}

.hj-event-title {
  display: block;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.hj-organizer-line,
.hj-event-meta,
.hj-event-footer {
  display: flex;
  align-items: center;
}

.hj-organizer-line {
  gap: 7px;
  margin-top: 10px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
}

.hj-org-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  color: #fff;
  background: #0f172a;
  font-weight: 900;
}

.hj-org-mark.is-small {
  width: 28px;
  height: 28px;
  font-size: 10px;
}

.hj-org-mark.is-large {
  width: 38px;
  height: 38px;
  font-size: 12px;
}

.hj-org-mark.is-story {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, .8);
  font-size: 10px;
}

.hj-org-verified {
  color: #f97316;
}

.hj-event-meta {
  gap: 6px;
  margin-top: 9px;
  color: #64748b;
  font-size: 12px;
}

.hj-event-meta:first-of-type {
  font-weight: 700;
}

.hj-event-footer {
  justify-content: space-between;
  margin-top: 14px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.hj-card-action,
.hj-row-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.hj-card-action {
  height: 32px;
  padding-inline: 12px;
  color: #fff;
  background: #2563eb;
}

.hj-card-action.is-going {
  border: 1px solid #e2e8f0;
  color: #0f172a;
  background: #fff;
}

.hj-tab-bar {
  position: absolute;
  inset: auto 0 0;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  background: rgba(255, 255, 255, .96);
}

.hj-tab-profile {
  color: #64748b;
}

.hj-tab-bar > span {
  display: grid;
  place-items: center;
}

.hj-tab-bar > span.is-hero-active {
  color: #0f172a;
}

.hj-hero-product-mode {
  width: 100%;
  height: 100%;
}

.hj-hero-feed,
.hj-market-scroll {
  height: calc(100% - 197px);
  overflow: hidden;
  background: #fff;
}

.hj-hero-stories {
  display: flex;
  gap: 10px;
  padding: 8px 6px 4px;
  overflow: hidden;
  border-bottom: 1px solid #eef2f7;
}

.hj-hero-story {
  width: 84px;
  flex: 0 0 84px;
  text-align: center;
}

.hj-hero-story-ring {
  position: relative;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #2563eb);
}

.hj-hero-story-ring > i {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #172033;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  overflow: hidden;
}

.hj-hero-story-ring > i img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hj-hero-story-ring.is-own {
  background: #e2e8f0;
}

.hj-hero-story-ring > b {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #2563eb;
  font-size: 12px;
}

.hj-hero-story > small {
  display: block;
  margin-top: 6px;
  overflow: hidden;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hj-hero-post {
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

.hj-hero-post header {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 14px;
}

.hj-post-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0f172a;
  background: #f1f5f9;
  font-size: 11px;
  font-weight: 900;
}

.hj-hero-post header strong,
.hj-hero-post header small {
  display: block;
}

.hj-hero-post header strong {
  font-size: 14px;
  font-weight: 900;
}

.hj-hero-post header small {
  margin-top: 2px;
  color: #64748b;
  font-size: 12px;
}

.hj-hero-post header button {
  min-width: 86px;
  height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #2563eb;
  font-size: 13px;
  font-weight: 800;
}

.hj-hero-post p {
  margin: 0;
  padding: 0 14px 12px;
  font-size: 15px;
  line-height: 21px;
}

.hj-hero-post > img {
  width: 100%;
  height: 390px;
  display: block;
  object-fit: cover;
}

.hj-hero-post footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 14px 12px;
  color: #0f172a;
}

.hj-hero-post footer span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 800;
}

.hj-hero-post footer > i {
  flex: 1;
}

.hj-hero-post footer button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  color: #0f172a;
  background: #fff;
}

.hj-market-filters {
  display: flex;
  gap: 7px;
  padding: 9px 10px;
  overflow: hidden;
  white-space: nowrap;
}

.hj-market-filters span {
  padding: 6px 9px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #475569;
  font-size: 9px;
  font-weight: 800;
}

.hj-market-filters span.is-active {
  border-color: #2563eb;
  color: #fff;
  background: #2563eb;
}

.hj-market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding: 0 10px 12px;
}

.hj-market-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  background: #fff;
}

.hj-market-card > img,
.hj-market-placeholder {
  width: 100%;
  height: 145px;
  display: grid;
  place-items: center;
  object-fit: cover;
  background: #eef2f7;
}

.hj-market-placeholder {
  color: #64748b;
  background: linear-gradient(145deg, #e9eff8, #f8fafc);
}

.hj-market-card strong,
.hj-market-card b,
.hj-market-card small {
  display: block;
  padding-inline: 9px;
}

.hj-market-card strong {
  margin-top: 9px;
  overflow: hidden;
  font-size: 11px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hj-market-card b {
  margin-top: 5px;
  color: #f97316;
  font-size: 13px;
}

.hj-market-card small {
  margin: 4px 0 10px;
  color: #94a3b8;
  font-size: 8px;
}

.hj-market-save {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0f172a;
  background: rgba(255, 255, 255, .88);
}

.hj-hero-screen-title {
  padding: 14px 14px 11px;
  border-bottom: 1px solid #e2e8f0;
}

.hj-hero-screen-title strong,
.hj-hero-screen-title span {
  display: block;
}

.hj-hero-screen-title strong {
  font-size: 17px;
  font-weight: 900;
}

.hj-hero-screen-title span {
  margin-top: 3px;
  color: #64748b;
  font-size: 10px;
}

.hj-org-preview {
  margin: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
}

.hj-org-cover {
  height: 136px;
  overflow: hidden;
}

.hj-org-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hj-org-profile {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 12px 12px 0;
}

.hj-org-profile strong,
.hj-org-profile small {
  display: block;
}

.hj-org-profile strong {
  font-size: 12px;
  font-weight: 900;
}

.hj-org-profile small {
  margin-top: 2px;
  color: #94a3b8;
  font-size: 9px;
}

.hj-org-preview > p {
  margin: 11px 12px 0;
  color: #475569;
  font-size: 10px;
  line-height: 1.45;
}

.hj-org-stats {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 12px;
}

.hj-org-stats span {
  text-align: center;
}

.hj-org-stats strong,
.hj-org-stats small {
  display: block;
}

.hj-org-stats strong {
  font-size: 12px;
  font-weight: 900;
}

.hj-org-stats small {
  color: #94a3b8;
  font-size: 8px;
}

.hj-org-stats button {
  height: 30px;
  padding-inline: 11px;
  border: 1px solid #dbe3ef;
  border-radius: 999px;
  color: #0f172a;
  background: #fff;
  font-size: 9px;
  font-weight: 900;
}

.hj-org-next {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 9px;
  margin: 0 10px 11px;
  padding: 10px;
  border-radius: 13px;
  color: #0f172a;
  background: #f5f7fb;
}

.hj-org-next > span:first-child {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #f97316;
  background: rgba(249, 115, 22, .1);
}

.hj-org-next strong,
.hj-org-next small {
  display: block;
}

.hj-org-next strong {
  font-size: 10px;
  font-weight: 900;
}

.hj-org-next small {
  margin-top: 2px;
  color: #94a3b8;
  font-size: 8px;
}

[data-hero-target] {
  transition: box-shadow .28s ease, transform .28s ease, border-color .28s ease;
}

[data-hero-target].is-hero-target {
  position: relative;
  z-index: 2;
  border-color: rgba(37, 99, 235, .45);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12), 0 13px 28px rgba(37, 99, 235, .12);
  transform: translateY(-2px);
}

.hj-detail-header,
.hj-activity-header {
  display: grid;
  grid-template-columns: 78px 1fr 78px;
  align-items: center;
  min-height: 55px;
  padding-inline: 8px;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

.hj-detail-header > strong,
.hj-activity-header > strong {
  text-align: center;
  font-size: 15px;
  font-weight: 900;
}

.hj-detail-side {
  display: flex;
  align-items: center;
}

.hj-detail-side.is-right {
  justify-content: flex-end;
}

.hj-detail-scroll {
  height: calc(100% - 102px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.hj-detail-scroll::-webkit-scrollbar {
  display: none;
}

.hj-detail-cover {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  border-block: 1px solid #e2e8f0;
}

.hj-detail-content {
  padding: 18px 16px 32px;
}

.hj-title-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  margin-top: 9px;
}

.hj-title-actions h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 34px;
}

.hj-title-actions > span {
  display: flex;
  gap: 7px;
}

.hj-detail-organizer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.hj-detail-organizer > span:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.hj-detail-organizer strong,
.hj-detail-organizer small,
.hj-stat-card strong,
.hj-stat-card small,
.hj-location-card strong,
.hj-location-card small {
  display: block;
}

.hj-detail-organizer strong {
  font-size: 13px;
  font-weight: 900;
}

.hj-detail-organizer small {
  margin-top: 2px;
  color: #64748b;
  font-size: 11px;
}

.hj-row-chevron {
  flex: 0 0 auto;
  color: #64748b;
}

.hj-detail-stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 10px;
  margin-top: 18px;
}

.hj-stat-card {
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
}

.hj-stat-card strong {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 900;
}

.hj-stat-card small {
  margin-top: 3px;
  color: #64748b;
  font-size: 10px;
}

.hj-location-card {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
}

.hj-location-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #2563eb;
  background: rgba(56, 189, 248, .12);
}

.hj-location-card strong {
  font-size: 12px;
  font-weight: 900;
}

.hj-location-card small {
  margin-top: 3px;
  color: #64748b;
  font-size: 10px;
}

.hj-map-preview {
  position: relative;
  height: 170px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #eef2ed;
}

.hj-map-road {
  position: absolute;
  height: 24px;
  background: #fff;
  border-block: 1px solid #dce4dc;
}

.hj-map-road.is-one {
  top: 65px;
  left: -20px;
  width: 390px;
  transform: rotate(-12deg);
}

.hj-map-road.is-two {
  top: -20px;
  left: 150px;
  width: 280px;
  transform: rotate(68deg);
}

.hj-map-block {
  position: absolute;
  border: 1px solid #d7ded7;
  border-radius: 5px;
  background: #dfe8df;
}

.hj-map-block.is-one {
  top: 18px;
  left: 38px;
  width: 92px;
  height: 42px;
}

.hj-map-block.is-two {
  right: 28px;
  bottom: 16px;
  width: 100px;
  height: 48px;
}

.hj-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  color: #f97316;
  background: #f97316;
  transform: translate(-50%, -50%);
}

.hj-about {
  margin-top: 26px;
}

.hj-about h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.hj-about p {
  margin: 8px 0 0;
  color: #0f172a;
  font-size: 13px;
  line-height: 1.55;
}

.hj-rsvp-button {
  width: 100%;
  height: 52px;
  margin-top: 18px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: #2563eb;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.hj-rsvp-button.is-going {
  border: 1px solid #e2e8f0;
  color: #0f172a;
  background: #f8fafc;
}

.hj-activity-header {
  border-bottom: 0;
}

.hj-activity-header > :last-child {
  justify-self: end;
}

.hj-activity-tabs {
  position: relative;
  height: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #e2e8f0;
}

.hj-activity-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #64748b;
  font-size: 10px;
  font-weight: 700;
}

.hj-activity-tab.is-active {
  color: #0f172a;
  font-weight: 900;
}

.hj-activity-tab.is-active::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 2px;
  background: #2563eb;
}

.hj-activity-scroll {
  height: calc(100% - 198px);
}

.hj-section-heading {
  padding: 20px 16px 8px;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

.hj-section-heading strong,
.hj-section-heading span {
  display: block;
}

.hj-section-heading strong {
  font-size: 15px;
  font-weight: 900;
}

.hj-section-heading span {
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.hj-activity-row {
  width: 100%;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid #e2e8f0;
  color: #0f172a;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.hj-activity-row > img {
  width: 56px;
  height: 56px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  object-fit: cover;
}

.hj-activity-copy {
  min-width: 0;
}

.hj-activity-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
}

.hj-neutral-badge {
  height: 22px;
  display: inline-flex;
  align-items: center;
  padding-inline: 8px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 999px;
  color: #64748b;
  background: rgba(148, 163, 184, .12);
  font-size: 10px;
  font-weight: 900;
}

.hj-activity-copy > strong,
.hj-activity-copy > small {
  display: block;
}

.hj-activity-copy > strong {
  margin-top: 6px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hj-activity-copy > small {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 11px;
  line-height: 1.35;
}

.hj-row-action {
  height: 31px;
  margin-top: 10px;
  padding-inline: 13px;
  color: #fff;
  background: #2563eb;
  font-size: 11px;
}

.hj-activity-row > .hj-row-chevron {
  margin-top: 20px;
}

.hj-story-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 41px;
  color: #fff;
  background: #000;
}

.hj-story-image {
  position: absolute;
  inset: 52px 5px 5px;
  width: calc(100% - 10px);
  height: calc(100% - 57px);
  border-radius: 12px;
  object-fit: cover;
}

.hj-story-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent 24%, transparent 70%, rgba(0, 0, 0, .62));
}

.hj-story-progress {
  position: absolute;
  z-index: 3;
  top: 43px;
  inset-inline: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.hj-story-progress > span {
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .34);
}

.hj-story-progress > span.is-complete,
.hj-story-progress > span.is-current i {
  background: #fff;
}

.hj-story-progress > span.is-current i {
  width: 64%;
  height: 100%;
  display: block;
}

.hj-story-owner {
  position: absolute;
  z-index: 3;
  top: 54px;
  inset-inline: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.hj-story-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
}

.hj-story-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hj-story-owner-copy {
  flex: 1;
  min-width: 0;
}

.hj-story-title-line,
.hj-story-byline {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 4px;
}

.hj-story-owner strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hj-story-title-line small {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
}

.hj-story-byline {
  margin-top: 2px;
  color: rgba(255, 255, 255, .76);
  font-size: 9px;
}

.hj-story-owner button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
}

.hj-story-caption {
  position: absolute;
  z-index: 3;
  inset: auto 20px 42px;
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
}

.hj-demo-caption {
  position: absolute;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 30px);
  max-width: 190px;
  padding: 13px 15px;
  border: 1px solid rgba(16, 24, 40, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 32px rgba(16, 24, 40, .1);
  backdrop-filter: blur(12px);
}

.hj-demo-caption span,
.hj-demo-caption strong {
  display: block;
}

.hj-demo-caption span {
  color: #2563eb;
  font-size: .63rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hj-demo-caption strong {
  margin-top: 5px;
  font-size: .79rem;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .hj-journey-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hj-journey-shell {
    grid-template-columns: 1fr;
  }

  .hj-journey-steps {
    flex-direction: row;
    overflow-x: auto;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 24, 40, .11);
  }

  .hj-journey-step {
    flex: 0 0 190px;
    min-height: 92px;
    border-right: 1px solid rgba(16, 24, 40, .11);
    border-bottom: 0;
  }

  .hj-demo-stage {
    min-height: 640px;
  }
}

@media (max-width: 680px) {
  .hj-journey-head {
    gap: 24px;
    margin-bottom: 36px;
  }

  .hj-journey-shell {
    min-height: 0;
  }

  .hj-journey-steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow: visible;
  }

  .hj-journey-step {
    grid-column: span 2;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 5px;
    min-width: 0;
    min-height: 72px;
    padding: 11px 6px;
    border-right: 1px solid rgba(16, 24, 40, .11);
    border-bottom: 1px solid rgba(16, 24, 40, .11);
    text-align: center;
  }

  .hj-journey-step:nth-child(3) { border-right: 0; }

  .hj-journey-step:nth-child(n + 4) {
    grid-column: span 3;
    border-bottom: 0;
  }

  .hj-journey-step:last-child { border-right: 0; }

  .hj-step-index {
    width: 26px;
    height: 26px;
  }

  .hj-journey-step small {
    display: none;
  }

  .hj-demo-stage {
    min-height: 650px;
    padding: 22px 8px 54px;
  }

  .hj-device {
    width: min(285px, 92%);
    border-radius: 42px;
  }

  .hj-device-screen,
  .hj-story-screen {
    border-radius: 34px;
  }

  .hj-device-island {
    top: 15px;
    width: 74px;
    height: 21px;
  }

  .hj-demo-caption {
    right: 12px;
    bottom: 12px;
    max-width: 154px;
    padding: 10px 11px;
  }

  .hj-demo-caption strong {
    font-size: .7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hj-step-progress {
    animation: none;
    transform: scaleX(1);
  }
}
