:root {
  --tech-bg: #05070a;
  --tech-bg-alt: #0d1118;
  --tech-panel: #121721;
  --tech-panel-alt: #1a2030;
  --tech-ink: #ebf1f4;
  --tech-muted: #8d96a3;
  --tech-line: rgba(225, 236, 246, 0.14);
  --tech-acid: #c6ff1a;
  --tech-acid-soft: rgba(198, 255, 26, 0.22);
  --tech-cyan: #70def8;
  --tech-purple: #6b43ff;
  --tech-paper: #e7ecef;
  --tech-paper-line: rgba(14, 16, 20, 0.26);
  --tech-shadow: 0 24px 60px rgba(6, 9, 15, 0.28);
  --tech-display: "Orbitron", var(--font-heading);
  --tech-body: "Chakra Petch", var(--font-body);
  --tech-cn: "Source Han Sans SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --tech-ticket-width: 64rem;
  --tech-ticket-height: 35rem;
  --tech-ship-width: 60rem;
  --tech-ship-height: 45rem;
  --tech-flight-width: 80rem;
  --tech-flight-height: 32rem;
  --tech-bus-width: 48rem;
  --tech-bus-height: 38.25rem;
  --tech-sheet-width: 26.5rem;
}

.preview-page [lang="zh-CN"],
.tech-render-host [lang="zh-CN"] {
  font-family: var(--tech-cn);
}

.tech-render-host [data-export-artifact],
.tech-render-host [lang="en"] {
  font-family: var(--tech-body);
}

.preview-page-section {
  min-height: calc(100vh - 8rem);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.preview-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.4rem, 2.4vw, 2rem);
}

.preview-title {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42), 0 1px 8px rgba(198, 165, 91, 0.08);
}

.preview-title :lang(en) {
  font-size: clamp(2.75rem, 4.8vw, 4.6rem);
}

.preview-title :lang(zh-CN) {
  font-size: clamp(1.38rem, 1.2rem + 0.75vw, 2rem);
}

.preview-artifact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.preview-artifact-strip li {
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(20, 25, 34, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(239, 228, 214, 0.88));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 18px rgba(73, 49, 23, 0.06);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--foreground) 78%, var(--accent) 22%);
}

.template-suite {
  padding-top: 1rem;
}

.tech-suite-shell {
  position: relative;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 20px;
  border: 1px solid rgba(20, 25, 34, 0.12);
  background:
    radial-gradient(circle at top left, rgba(112, 222, 248, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(107, 67, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    #020305;
  box-shadow: 0 30px 60px rgba(16, 10, 33, 0.15);
  overflow: hidden;
}

.tech-suite-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.28;
  pointer-events: none;
}

.tech-suite-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, calc(var(--tech-sheet-width) + 3.2rem)));
  justify-content: center;
  gap: 1.1rem;
}

.tech-preview-panel {
  width: 100%;
  min-width: 0;
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(18, 23, 33, 0.96), rgba(9, 12, 18, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tech-ticket-preview {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: calc(var(--tech-ticket-width) + 2rem);
}

.tech-ship-preview {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: calc(var(--tech-ship-width) + 2rem);
}

.tech-flight-preview {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: calc(var(--tech-flight-width) + 2rem);
}

.tech-bus-preview {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: calc(var(--tech-bus-width) + 2rem);
}

.tech-plan-preview,
.tech-packing-preview {
  width: min(100%, calc(var(--tech-sheet-width) + 3.2rem));
  justify-self: center;
}

.tech-preview-topline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--tech-display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(235, 241, 244, 0.76);
}

.tech-preview-topline span[aria-hidden] {
  color: rgba(141, 150, 163, 0.7);
}

.tech-render-host {
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding-bottom: 0;
}

.tech-preview-frame {
  width: max-content;
  max-width: none;
  flex: 0 0 auto;
}

.tech-render-host.is-scaled {
  overflow: hidden;
}

.tech-render-host.is-scaled > .tech-preview-frame > [data-export-artifact] {
  transform-origin: top left;
}

.tech-render-host.is-scrollable {
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.35rem;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(112, 222, 248, 0.4) rgba(255, 255, 255, 0.04);
}

.tech-render-host.is-scrollable::-webkit-scrollbar {
  height: 10px;
}

.tech-render-host.is-scrollable::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.tech-render-host.is-scrollable::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(112, 222, 248, 0.48), rgba(198, 255, 26, 0.42));
  border-radius: 999px;
}

.tech-locale-inline,
.tech-locale-stack {
  min-width: 0;
}

.tech-locale-inline {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.26rem;
}

.tech-locale-inline .tech-divider {
  color: rgba(141, 150, 163, 0.7);
}

.tech-locale-inline [lang="zh-CN"] {
  opacity: 0.8;
}

.tech-locale-inline.is-tight {
  gap: 0.18rem;
}

.tech-locale-stack {
  display: grid;
  gap: 0.12rem;
}

.tech-locale-stack.is-compact {
  gap: 0.06rem;
}

.tech-locale-stack [lang="en"] {
  display: block;
}

.tech-locale-stack [lang="zh-CN"] {
  display: block;
  font-size: 0.88em;
  line-height: 1.3;
  opacity: 0.78;
}

.tech-locale-stack .voyager-field-main,
.tech-locale-stack .voyager-field-secondary {
  display: block;
}

.tech-locale-stack.zh-primary {
  display: flex;
  flex-direction: column;
}

.tech-locale-stack.zh-primary [lang="zh-CN"] {
  order: 1;
  opacity: 1;
}

.tech-locale-stack.zh-primary [lang="en"] {
  order: 2;
}

.tech-locale-stack.zh-primary.type-title {
  gap: 0.28rem;
}

.tech-locale-stack.zh-primary.type-title [lang="zh-CN"] {
  font-size: 1em;
  line-height: 1.26;
  color: var(--tech-ink);
}

.tech-locale-stack.zh-primary.type-title [lang="en"] {
  font-size: 0.54em;
  line-height: 1.34;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(141, 150, 163, 0.76);
}

.tech-locale-stack.zh-primary.type-title .voyager-field-main {
  font-size: 1em;
  line-height: 1.24;
  color: var(--tech-ink);
}

.tech-locale-stack.zh-primary.type-title .voyager-field-secondary {
  font-size: 0.62em;
  line-height: 1.34;
  letter-spacing: 0.04em;
  color: rgba(141, 150, 163, 0.72);
}

.tech-locale-stack.zh-primary.type-label {
  gap: 0.24rem;
}

.tech-locale-stack.zh-primary.type-label [lang="zh-CN"] {
  font-size: 1em;
  line-height: 1.42;
  color: rgba(235, 241, 244, 0.96);
}

.tech-locale-stack.zh-primary.type-label [lang="en"] {
  font-size: 0.62em;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(141, 150, 163, 0.72);
}

.tech-locale-stack.zh-primary.type-copy {
  gap: 0.42rem;
}

.tech-locale-stack.zh-primary.type-copy [lang="zh-CN"] {
  font-size: 1.02em;
  line-height: 1.8;
  color: rgba(235, 241, 244, 0.97);
}

.tech-locale-stack.zh-primary.type-copy [lang="en"] {
  max-width: 92%;
  font-size: 0.7em;
  line-height: 1.56;
  color: rgba(141, 150, 163, 0.66);
}

.tech-locale-stack.zh-primary.type-copy .voyager-field-main {
  font-size: 1em;
  line-height: 1.72;
  color: rgba(235, 241, 244, 0.95);
}

.tech-locale-stack.zh-primary.type-copy .voyager-field-secondary {
  max-width: 92%;
  font-size: 0.78em;
  line-height: 1.52;
  color: rgba(141, 150, 163, 0.64);
}

.tech-locale-stack.zh-primary.type-chip {
  gap: 0.1rem;
}

.tech-locale-stack.zh-primary.type-chip [lang="zh-CN"] {
  font-size: 0.96em;
  line-height: 1.3;
  color: rgba(235, 241, 244, 0.96);
}

.tech-locale-stack.zh-primary.type-chip [lang="en"] {
  font-size: 0.62em;
  line-height: 1.28;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(141, 150, 163, 0.72);
}

.tech-copy-stack {
  color: inherit;
}

.tech-chip-stack {
  gap: 0.08rem;
}

.tech-chip-stack [lang="zh-CN"] {
  font-size: 0.8em;
}

.tech-suite-card,
.tech-plan-sheet,
.tech-packing-sheet {
  font-family: var(--tech-body);
}

.tech-train-ticket {
  position: relative;
  width: var(--tech-ticket-width);
  min-width: var(--tech-ticket-width);
  height: var(--tech-ticket-height);
  padding: clamp(0.85rem, 1.6vw, 1.1rem);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(107, 67, 255, 0.16), transparent 22%),
    radial-gradient(circle at bottom left, rgba(198, 255, 26, 0.14), transparent 26%),
    #040507;
  box-shadow: var(--tech-shadow);
  overflow: hidden;
}

.tech-ship-ticket {
  position: relative;
  width: var(--tech-ship-width);
  min-width: var(--tech-ship-width);
  height: var(--tech-ship-height);
  padding: clamp(0.9rem, 1.8vw, 1.15rem);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(107, 67, 255, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(198, 255, 26, 0.14), transparent 28%),
    #040507;
  box-shadow: var(--tech-shadow);
  overflow: hidden;
}

.tech-flight-ticket {
  position: relative;
  width: var(--tech-flight-width);
  min-width: var(--tech-flight-width);
  height: var(--tech-flight-height);
  padding: clamp(0.82rem, 1.4vw, 1rem);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(107, 67, 255, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(198, 255, 26, 0.14), transparent 26%),
    #040507;
  box-shadow: var(--tech-shadow);
  overflow: hidden;
}

.tech-bus-ticket {
  position: relative;
  width: var(--tech-bus-width);
  min-width: var(--tech-bus-width);
  height: var(--tech-bus-height);
  padding: clamp(0.88rem, 1.8vw, 1.1rem);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(107, 67, 255, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(198, 255, 26, 0.14), transparent 28%),
    #040507;
  box-shadow: var(--tech-shadow);
  overflow: hidden;
}

.tech-ship-ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.tech-flight-ticket::before,
.tech-bus-ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.tech-train-ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.tech-ticket-sheet {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.23fr) minmax(21rem, 1fr);
  gap: 1.05rem;
  height: 100%;
  padding: 1.28rem 1.38rem 1.34rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, #eef2f6 0%, #dde2e6 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.tech-ship-sheet {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto auto auto;
  gap: 0.64rem;
  height: 100%;
  padding: 1.08rem 1.18rem 1.14rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, #eef2f6 0%, #dde2e6 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.tech-flight-sheet {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) 18.5rem;
  gap: 0;
  height: 100%;
  padding: 1rem 1.08rem 1.04rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, #eef2f6 0%, #dde2e6 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.tech-flight-sheet::before {
  content: "";
  position: absolute;
  inset: 0 18% 0 10%;
  background:
    linear-gradient(115deg, transparent 0 16%, rgba(198, 255, 26, 0.82) 16% 19%, transparent 19% 38%, rgba(198, 255, 26, 0.66) 38% 41%, transparent 41% 100%);
  opacity: 0.86;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.tech-flight-sheet::after {
  content: "";
  position: absolute;
  top: 0.72rem;
  bottom: 0.72rem;
  right: 18.5rem;
  width: 1px;
  border-right: 2px dashed rgba(13, 17, 24, 0.16);
  pointer-events: none;
}

.tech-bus-sheet {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto auto auto;
  align-content: start;
  gap: 0.62rem;
  height: 100%;
  padding: 1rem 1.08rem 1.02rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, #eef2f6 0%, #dde2e6 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.tech-bus-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(198, 255, 26, 0.12), transparent 26%),
    linear-gradient(115deg, transparent 0 22%, rgba(198, 255, 26, 0.82) 22% 26%, transparent 26% 48%, rgba(198, 255, 26, 0.62) 48% 52%, transparent 52% 100%);
  opacity: 0.88;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.tech-ship-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(198, 255, 26, 0.14), transparent 28%),
    linear-gradient(115deg, transparent 0 20%, rgba(198, 255, 26, 0.82) 20% 24%, transparent 24% 40%, rgba(198, 255, 26, 0.62) 40% 44%, transparent 44% 100%);
  opacity: 0.88;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.tech-ship-sheet::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 6rem;
  height: 6rem;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.18), rgba(255, 255, 255, 0.36)),
    linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.16) 50%);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  box-shadow: -16px 18px 24px rgba(13, 17, 24, 0.22);
  pointer-events: none;
}

.tech-ticket-sheet::before {
  content: "";
  position: absolute;
  inset: 0 18% 0 12%;
  background:
    linear-gradient(
      115deg,
      transparent 0 13%,
      rgba(198, 255, 26, 0.88) 13% 18%,
      transparent 18% 30%,
      rgba(198, 255, 26, 0.88) 30% 35%,
      transparent 35% 48%,
      rgba(198, 255, 26, 0.88) 48% 53%,
      transparent 53% 100%
    ),
    linear-gradient(
      115deg,
      transparent 0 48%,
      rgba(198, 255, 26, 0.7) 48% 53%,
      transparent 53% 66%,
      rgba(198, 255, 26, 0.7) 66% 71%,
      transparent 71% 100%
    );
  mix-blend-mode: multiply;
  opacity: 0.88;
  pointer-events: none;
}

.tech-ticket-sheet::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6.25rem;
  height: 6.25rem;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.18), rgba(255, 255, 255, 0.36)),
    linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.16) 50%);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  box-shadow: -16px 18px 24px rgba(13, 17, 24, 0.22);
  pointer-events: none;
}

.tech-ticket-left,
.tech-ticket-right {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.tech-ship-sheet > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.tech-flight-sheet > *,
.tech-bus-sheet > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.tech-ticket-left {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 0.82rem;
}

.tech-ticket-meta-row,
.tech-ticket-footer-row,
.tech-ticket-provider-row,
.tech-mini-kv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.tech-ticket-meta-row,
.tech-ticket-provider-row,
.tech-detail-label,
.tech-mini-kv > span:first-child {
  font-family: var(--tech-display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(13, 17, 24, 0.64);
}

.tech-mini-kv-value {
  justify-content: flex-end;
  text-align: right;
}

.tech-ticket-origin-line {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  min-width: 0;
}

.tech-ticket-route {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.tech-ticket-route-code {
  font-family: var(--tech-display);
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #101318;
}

.tech-ticket-service {
  font-family: var(--tech-display);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(16, 19, 24, 0.84);
}

.tech-ticket-route-stack {
  display: grid;
  gap: 0.24rem;
}

.tech-ticket-route-stack .tech-top-line {
  display: block;
  font-family: var(--tech-display), "Noto Sans SC", "Source Han Sans SC", sans-serif;
  font-size: clamp(1.58rem, 2.15vw, 2rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #101318;
  word-break: break-word;
}

.tech-ticket-route-stack .tech-bottom-line {
  display: block;
  font-family: "Noto Sans SC", "Source Han Sans SC", var(--tech-body), sans-serif;
  font-size: 1rem;
  line-height: 1.16;
  letter-spacing: 0.06em;
  color: rgba(16, 19, 24, 0.84);
  text-transform: none;
}

.tech-ticket-track-mark {
  flex: 0 0 auto;
  font-family: var(--tech-display);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--tech-acid);
  text-shadow: 0 0 12px rgba(198, 255, 26, 0.28);
}

.tech-ticket-brief {
  max-width: 38rem;
  font-size: 0.96rem;
  line-height: 1.46;
  color: rgba(13, 17, 24, 0.84);
}

.tech-ticket-time-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 0.8rem;
  align-items: end;
}

.tech-ticket-time-box {
  display: grid;
  gap: 0.2rem;
}

.tech-ticket-time-label {
  font-family: var(--tech-display);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(13, 17, 24, 0.62);
}

.tech-ticket-time-value {
  font-family: var(--tech-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.95;
  color: #0f1419;
}

.tech-ticket-time-subvalue {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(13, 17, 24, 0.7);
}

.tech-ticket-barcode-block {
  display: grid;
  gap: 0.45rem;
  align-items: end;
}

.tech-barcode {
  height: 4.2rem;
  border-radius: 8px;
  border: 1px solid rgba(13, 17, 24, 0.15);
  background:
    repeating-linear-gradient(
      90deg,
      #101318 0 2px,
      transparent 2px 4px,
      #101318 4px 7px,
      transparent 7px 10px,
      #101318 10px 13px,
      transparent 13px 16px
    ),
    linear-gradient(180deg, #ffffff, #dfe3e7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.tech-barcode-caption {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.7rem;
  color: rgba(13, 17, 24, 0.72);
}

.tech-ticket-right {
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  align-content: start;
  gap: 1.14rem;
  padding-left: 1.08rem;
  border-left: 1px solid rgba(13, 17, 24, 0.16);
}

.tech-seat-badge {
  display: grid;
  gap: 0.18rem;
  align-content: start;
}

.tech-seat-badge strong {
  font-family: var(--tech-display);
  font-size: clamp(2.25rem, 3.7vw, 3.45rem);
  line-height: 0.92;
  color: #0f1419;
}

.tech-seat-badge .tech-locale-stack {
  font-family: var(--tech-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tech-purple);
}

.tech-seat-badge .tech-locale-stack [lang="zh-CN"] {
  font-size: 0.84em;
}

.tech-ticket-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(13, 17, 24, 0.22), rgba(13, 17, 24, 0.06));
}

.tech-ticket-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 1.14rem 1rem;
}

.tech-detail-item {
  display: grid;
  gap: 0.22rem;
}

.tech-detail-value {
  min-width: 0;
  font-family: var(--tech-body);
  font-size: 0.88rem;
  line-height: 1.22;
  color: #11161b;
}

.tech-ticket-footer-row {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  align-items: flex-start;
  padding-top: 0.28rem;
  border-top: 1px solid rgba(13, 17, 24, 0.12);
  font-size: 0.72rem;
  color: rgba(13, 17, 24, 0.76);
}

.tech-ticket-footer-row > * {
  flex: 1 1 0;
  min-width: 0;
}

.tech-ship-topline,
.tech-ship-meta,
.tech-ship-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.tech-ship-topline,
.tech-ship-meta,
.tech-ship-mini-label,
.tech-ship-detail-card > span:first-child,
.tech-ship-footer strong {
  font-family: var(--tech-display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(13, 17, 24, 0.64);
}

.tech-ship-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.82rem;
  align-items: start;
}

.tech-ship-route {
  display: grid;
  gap: 0.24rem;
}

.tech-ship-route-code {
  font-family: var(--tech-display);
  font-size: clamp(2.75rem, 4.7vw, 4.1rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #0f1419;
}

.tech-ship-route-line {
  display: block;
  min-width: 0;
}

.tech-ship-route-stack {
  display: grid;
  gap: 0.3rem;
}

.tech-ship-route-stack .tech-top-line {
  display: block;
  font-family: var(--tech-display), var(--tech-cn), sans-serif;
  font-size: clamp(2.1rem, 3.55vw, 2.95rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(16, 19, 24, 0.92);
  word-break: break-word;
}

.tech-ship-route-stack .tech-bottom-line {
  display: block;
  font-family: var(--tech-cn), var(--tech-body), sans-serif;
  font-size: 1.05rem;
  line-height: 1.22;
  letter-spacing: 0.05em;
  color: rgba(16, 19, 24, 0.84);
  text-transform: none;
}

.tech-ship-pier-badge {
  display: grid;
  justify-items: end;
  gap: 0.1rem;
  min-width: 7rem;
}

.tech-ship-pier-badge strong {
  font-family: var(--tech-display);
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  line-height: 0.92;
  color: #0f1419;
}

.tech-ship-pier-badge .tech-locale-stack {
  font-family: var(--tech-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tech-purple);
}

.tech-ship-brief {
  max-width: 34rem;
  font-size: 0.9rem;
  line-height: 1.36;
  color: rgba(13, 17, 24, 0.84);
}

.tech-ship-waveband {
  position: relative;
  height: 4.2rem;
  border-radius: 14px;
  border: 1px solid rgba(13, 17, 24, 0.12);
  background:
    radial-gradient(circle at 18% 70%, rgba(198, 255, 26, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(15, 20, 25, 0.05), rgba(15, 20, 25, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(223, 227, 231, 0.78));
  overflow: hidden;
}

.tech-ship-waveband::before,
.tech-ship-waveband::after {
  content: "";
  position: absolute;
  inset: auto -8% 0;
  height: 78%;
  border-top: 2px solid rgba(13, 17, 24, 0.18);
  border-radius: 50% 50% 0 0;
  transform: translateY(34%);
}

.tech-ship-waveband::after {
  inset: auto -14% 0;
  height: 62%;
  border-top-color: rgba(13, 17, 24, 0.12);
  transform: translateY(12%);
}

.tech-ship-waveband span {
  position: absolute;
  font-family: var(--tech-display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(13, 17, 24, 0.62);
}

.tech-ship-waveband span:nth-child(1) {
  left: 1rem;
  top: 0.62rem;
}

.tech-ship-waveband span:nth-child(2) {
  right: 1rem;
  top: 0.86rem;
}

.tech-ship-waveband span:nth-child(3) {
  left: 50%;
  bottom: 0.58rem;
  transform: translateX(-50%);
}

.tech-ship-time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.tech-ship-time-card,
.tech-ship-detail-card {
  display: grid;
  gap: 0.18rem;
  padding: 0.62rem 0.68rem 0.66rem;
  border-radius: 12px;
  border: 1px solid rgba(13, 17, 24, 0.12);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.tech-ship-time-card strong {
  font-family: var(--tech-display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 0.96;
  color: #101318;
}

.tech-ship-time-card .tech-locale-stack,
.tech-ship-detail-card .tech-locale-stack {
  color: #101318;
}

.tech-ship-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.tech-ship-detail-card .tech-detail-value {
  font-size: 0.78rem;
  line-height: 1.14;
}

.tech-ship-footer {
  padding-top: 0.42rem;
  border-top: 1px solid rgba(13, 17, 24, 0.12);
}

.tech-ship-footer strong {
  display: block;
  margin-bottom: 0.14rem;
}

.tech-ship-footer > * {
  flex: 1 1 0;
  min-width: 0;
}

.tech-flight-main {
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  gap: 0.62rem;
  padding-right: 1.54rem;
}

.tech-flight-topline,
.tech-flight-mini-label,
.tech-flight-stub-label,
.tech-bus-topline,
.tech-bus-mini-label,
.tech-bus-footer strong {
  font-family: var(--tech-display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(13, 17, 24, 0.64);
}

.tech-flight-topline,
.tech-bus-topline,
.tech-bus-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  align-items: flex-start;
}

.tech-flight-topline {
  align-items: center;
  gap: 1rem;
}

.tech-flight-route {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.72rem;
  align-items: end;
}

.tech-flight-airport {
  display: grid;
  gap: 0.26rem;
}

.tech-flight-airport strong {
  font-family: var(--tech-display);
  font-size: clamp(2.85rem, 4.4vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: #101318;
}

.tech-flight-airport > span:last-child {
  font-size: 0.76rem;
  line-height: 1.34;
  color: rgba(13, 17, 24, 0.76);
}

.tech-flight-arrow {
  align-self: center;
  font-family: var(--tech-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--tech-acid);
  text-shadow: 0 0 12px rgba(198, 255, 26, 0.24);
}

.tech-flight-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: 0.22rem 0.54rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 255, 26, 0.22);
  background: rgba(198, 255, 26, 0.08);
}

.tech-flight-brief {
  max-width: 42rem;
  font-size: 0.8rem;
  line-height: 1.28;
  color: rgba(13, 17, 24, 0.82);
}

.tech-flight-timegrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.tech-flight-cell,
.tech-bus-cell,
.tech-bus-detail-card {
  display: grid;
  gap: 0.18rem;
  padding: 0.58rem 0.64rem 0.62rem;
  border-radius: 12px;
  border: 1px solid rgba(13, 17, 24, 0.12);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.tech-flight-stub-box {
  display: grid;
  gap: 0.18rem;
  padding: 0.68rem 0.76rem 0.72rem;
  border-radius: 12px;
  border: 1px solid rgba(13, 17, 24, 0.12);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.tech-flight-stub-box:first-child {
  gap: 0.44rem;
}

.tech-flight-cell strong {
  font-family: var(--tech-display);
  font-size: clamp(1.1rem, 1.8vw, 1.62rem);
  line-height: 0.96;
  color: #101318;
}

.tech-flight-footer,
.tech-bus-footer {
  padding-top: 0.34rem;
  border-top: 1px solid rgba(13, 17, 24, 0.12);
}

.tech-flight-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  align-items: start;
}

.tech-flight-stub {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 1.08rem;
  padding-left: 1.78rem;
}

.tech-flight-stub-code {
  font-family: var(--tech-display);
  font-size: clamp(2.05rem, 3.4vw, 2.8rem);
  line-height: 1;
  color: #101318;
}

.tech-flight-stub .tech-barcode {
  height: 4.18rem;
}

.tech-flight-stub-box .tech-detail-value,
.tech-flight-footer .tech-detail-value {
  font-size: 0.8rem;
  line-height: 1.38;
}

.tech-flight-stub-box:first-child .tech-detail-value {
  font-size: 1rem;
  line-height: 1.56;
}

.tech-flight-stub-box:first-child .tech-detail-value .tech-locale-stack.is-compact {
  gap: 0.24rem;
}

.tech-flight-stub-box:first-child .tech-detail-value .tech-locale-stack.is-compact [lang="en"] {
  font-size: 1.04em;
  line-height: 1.08;
}

.tech-flight-stub-box:first-child .tech-detail-value .tech-locale-stack.is-compact [lang="zh-CN"] {
  font-size: 0.96em;
  line-height: 1.32;
}

.tech-flight-inline-stack {
  display: grid;
  gap: 0.42rem;
}

.tech-flight-inline-stack > div {
  display: grid;
  gap: 0.14rem;
}

.tech-flight-meta-item,
.tech-flight-stub-barcode {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.tech-flight-stub-barcode {
  gap: 0.24rem;
}

.tech-flight-stub-caption {
  font-size: 0.62rem;
  line-height: 1.18;
  color: rgba(13, 17, 24, 0.68);
}

.tech-flight-stub-caption .tech-locale-stack {
  gap: 0.04rem;
}

.tech-bus-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.72rem;
  align-items: start;
}

.tech-bus-route {
  display: grid;
  gap: 0.2rem;
}

.tech-bus-code {
  font-family: var(--tech-display);
  font-size: clamp(2.28rem, 4vw, 3.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #101318;
}

.tech-bus-line {
  display: block;
  min-width: 0;
}

.tech-bus-route-stack {
  display: grid;
  gap: 0.26rem;
}

.tech-bus-route-stack .tech-top-line {
  display: block;
  font-family: var(--tech-display), var(--tech-cn), sans-serif;
  font-size: clamp(1.7rem, 2.75vw, 2.3rem);
  line-height: 0.96;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(16, 19, 24, 0.92);
  word-break: break-word;
}

.tech-bus-route-stack .tech-bottom-line {
  display: block;
  font-family: var(--tech-cn), var(--tech-body), sans-serif;
  font-size: 1rem;
  line-height: 1.22;
  letter-spacing: 0.05em;
  color: rgba(16, 19, 24, 0.84);
  text-transform: none;
}

.tech-bus-bay {
  display: grid;
  justify-items: end;
  gap: 0.52rem;
}

.tech-bus-bay strong {
  font-family: var(--tech-display);
  font-size: clamp(1.92rem, 3.4vw, 2.9rem);
  line-height: 0.92;
  color: #0f1419;
}

.tech-bus-bay .tech-locale-stack.tech-bus-bay-stack {
  gap: 0.44rem;
  text-align: right;
}

.tech-bus-bay .tech-locale-stack.tech-bus-bay-stack [lang="en"] {
  font-family: var(--tech-display);
  font-size: 0.78rem;
  line-height: 1.12;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tech-purple);
}

.tech-bus-bay .tech-locale-stack.tech-bus-bay-stack [lang="zh-CN"] {
  font-family: var(--tech-cn);
  font-size: 0.96rem;
  line-height: 1.34;
  letter-spacing: 0.04em;
  color: rgba(16, 19, 24, 0.84);
}

.tech-bus-brief {
  max-width: 32rem;
  font-size: 0.84rem;
  line-height: 1.28;
  color: rgba(13, 17, 24, 0.82);
}

.tech-bus-timegrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.58rem;
}

.tech-bus-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.tech-bus-cell,
.tech-bus-detail-card {
  gap: 0.14rem;
  padding: 0.5rem 0.56rem 0.54rem;
}

.tech-bus-cell strong {
  font-family: var(--tech-display);
  font-size: clamp(1.24rem, 2.1vw, 1.8rem);
  line-height: 0.96;
  color: #101318;
}

.tech-bus-cell > span:last-child,
.tech-bus-detail-card .tech-detail-value {
  font-size: 0.74rem;
  line-height: 1.12;
}

.tech-bus-cell .tech-locale-stack [lang="zh-CN"],
.tech-bus-detail-card .tech-detail-value .tech-locale-stack [lang="zh-CN"] {
  font-size: 0.98em;
  line-height: 1.24;
}

.tech-bus-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
  padding-top: 0.22rem;
}

.tech-bus-footer .tech-locale-stack,
.tech-bus-footer > div {
  font-size: 0.66rem;
  line-height: 1.14;
}

.tech-plan-sheet,
.tech-packing-sheet {
  width: var(--tech-sheet-width);
  min-width: var(--tech-sheet-width);
  height: auto;
  padding: 1.35rem 1.28rem 1.42rem;
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(112, 222, 248, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(13, 17, 24, 0.96), rgba(9, 12, 17, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--tech-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tech-sheet-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.tech-sheet-header h3 {
  margin: 0.55rem 0 0;
  font-family: var(--tech-display);
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  line-height: 1.12;
  color: var(--tech-ink);
}

.tech-sheet-chip,
.tech-category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 255, 26, 0.3);
  background: rgba(198, 255, 26, 0.12);
  font-family: var(--tech-display);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tech-acid);
}

.tech-plan-summary {
  display: grid;
  gap: 0;
  margin-top: 1.25rem;
  padding: 1.38rem 1.36rem 1.44rem;
  border-radius: 12px;
  border: 1px solid rgba(112, 222, 248, 0.16);
  background: rgba(112, 222, 248, 0.05);
}

.tech-plan-summary p,
.tech-module-body,
.tech-pack-note {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.62;
  color: rgba(235, 241, 244, 0.86);
}

.tech-plan-summary > p {
  padding-bottom: 0;
}

.tech-summary-divider {
  width: 100%;
  height: 1px;
  margin-top: 1.08rem;
  margin-bottom: 1.36rem;
  background: linear-gradient(
    90deg,
    rgba(112, 222, 248, 0.18) 0%,
    rgba(112, 222, 248, 0.38) 22%,
    rgba(112, 222, 248, 0.12) 100%
  );
  pointer-events: none;
}

.tech-plan-summary ul,
.tech-module-list,
.tech-pack-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-highlight-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.82rem;
  margin-top: 0;
  padding-top: 0;
}

.tech-highlight-row li {
  flex: 0 1 auto;
  width: fit-content;
  max-width: min(100%, 13rem);
  min-width: 0;
}

.tech-highlight-row li {
  display: flex;
  align-items: flex-start;
  min-height: 1.7rem;
  padding: 0.42rem 0.68rem 0.48rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 255, 26, 0.24);
  background: linear-gradient(180deg, rgba(46, 62, 38, 0.96), rgba(35, 49, 31, 0.92));
  box-shadow: inset 0 1px 0 rgba(198, 255, 26, 0.08);
  font-size: 0.76rem;
  color: rgba(235, 241, 244, 0.92);
}

.tech-highlight-row li .tech-locale-stack {
  width: auto;
  max-width: 100%;
}

.tech-pack-derived li {
  display: inline-flex;
  align-items: flex-start;
  min-height: 1.7rem;
  padding: 0.42rem 0.68rem 0.48rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 255, 26, 0.24);
  background: rgba(198, 255, 26, 0.08);
  font-size: 0.76rem;
  color: rgba(235, 241, 244, 0.92);
}

.tech-module-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.tech-module-card {
  display: grid;
  gap: 0;
  padding: 1.1rem 1.08rem 1.15rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(24, 29, 40, 0.92);
}

.tech-module-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0;
  padding-bottom: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-module-type {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--tech-display);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(112, 222, 248, 0.86);
}

.tech-module-type-row {
  gap: 0.45rem;
}

.tech-module-title {
  display: grid;
  gap: 0.18rem;
  font-family: var(--tech-display);
  font-size: 1.02rem;
  line-height: 1.34;
  color: var(--tech-ink);
}

.tech-module-title::after {
  content: "";
  width: 4.6rem;
  height: 1px;
  margin-top: 0.16rem;
  background: linear-gradient(90deg, rgba(198, 255, 26, 0.72), rgba(112, 222, 248, 0.12));
}

.tech-module-title .tech-locale-stack.zh-primary.type-label [lang="zh-CN"] {
  color: rgba(210, 244, 252, 0.98);
  text-shadow: 0 0 14px rgba(112, 222, 248, 0.08);
}

.tech-module-title .tech-locale-stack.zh-primary.type-label [lang="en"] {
  color: rgba(112, 222, 248, 0.64);
}

.tech-module-card > .tech-module-title {
  margin-top: 1.08rem;
}

.tech-module-card > .tech-module-body {
  margin-top: 1rem;
}

.tech-module-tag {
  font-family: var(--tech-display);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(141, 150, 163, 0.8);
}

.tech-module-list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
  margin-top: 1.62rem;
  padding-top: 1.08rem;
  border-top: 1px solid rgba(112, 222, 248, 0.08);
}

.tech-module-list-inline > span {
  display: inline-flex;
  align-items: flex-start;
  padding: 0.34rem 0.58rem 0.38rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.74rem;
  color: rgba(235, 241, 244, 0.88);
}

.tech-module-note {
  margin-top: 1.3rem;
  padding-top: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-pack-grid {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.15rem;
}

.tech-pack-category {
  padding: 1rem 1rem 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(24, 29, 40, 0.9);
}

.tech-pack-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.tech-pack-category-title {
  font-family: var(--tech-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tech-cyan);
}

.tech-pack-list {
  display: grid;
  gap: 0.58rem;
}

.tech-pack-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.84rem;
  color: rgba(235, 241, 244, 0.88);
}

.tech-pack-list li > span:last-child {
  color: rgba(141, 150, 163, 0.88);
}

.tech-pack-item-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.tech-pack-item-label,
.tech-pack-item-note {
  min-width: 0;
}

.tech-pack-item-note {
  font-size: 0.72rem;
  line-height: 1.36;
  color: rgba(141, 150, 163, 0.84);
}

.tech-pack-derived {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-pack-derived p {
  margin: 0 0 0.55rem;
  font-family: var(--tech-display);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(198, 255, 26, 0.84);
}

.tech-pack-derived ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tech-pack-alert {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(235, 241, 244, 0.82);
}

@media (max-width: 1080px) {
  .tech-suite-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 780px) {
  .preview-artifact-strip li {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .tech-preview-panel {
    padding: 0.85rem;
  }

  .tech-render-host {
    justify-content: flex-start;
  }
}
