.project-band {
  position: relative;
  overflow: hidden;
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255,194,28,.16), transparent 24%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #054e2b;
  background-size: auto, 52px 52px, 52px 52px, auto;
  color: #fff;
}

.project-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -210px;
  top: -210px;
  border: 1px solid rgba(255,194,28,.3);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(255,194,28,.035), 0 0 0 92px rgba(255,194,28,.025);
}

.project-band-head {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 52px;
}

.project-band .section-label { color: #ffd86b; }
.project-band h2 {
  margin: 12px 0 0;
  max-width: 780px;
  color: #fff;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.17;
  letter-spacing: -.055em;
}

.project-band h2 em { color: #ffc21c; font-style: normal; }

.project-band-note {
  padding: 20px 0 4px 25px;
  border-left: 1px solid rgba(255,255,255,.2);
}

.project-band-note b {
  display: block;
  color: #fff;
  font: 600 13px/1.4 "DM Mono", monospace;
  letter-spacing: .08em;
}

.project-band-note p {
  margin: 8px 0 0;
  color: #a9c8b4;
  font: 13px/1.7 "Noto Sans TC", sans-serif;
}

.project-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-track::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 31px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,194,28,.8) 18%, rgba(92,193,103,.8) 82%, transparent);
}

.project-card {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.115), rgba(255,255,255,.035));
  backdrop-filter: blur(8px);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.project-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,194,28,.58);
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.055));
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,.07) 50%, transparent 58%);
  transform: translateX(-110%);
  transition: transform .7s ease;
  pointer-events: none;
}

.project-card:hover::after { transform: translateX(110%); }

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 17px;
  gap: 12px;
}

.project-code {
  color: #b4d0bd;
  font: 500 10px/1 "DM Mono", monospace;
  letter-spacing: .12em;
}

.project-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #e9f5ec;
  font: 500 9px/1 "DM Mono", monospace;
  letter-spacing: .1em;
}

.project-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffc21c;
  box-shadow: 0 0 0 5px rgba(255,194,28,.12), 0 0 18px rgba(255,194,28,.7);
  animation: projectPulse 2.4s ease-in-out infinite;
}

.project-visual {
  position: relative;
  height: 86px;
  margin: 26px 0 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,.2);
}

.project-visual::before { left: 0; width: 29%; }
.project-visual::after { right: 0; width: 29%; }

.project-symbol {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255,194,28,.72);
  transform: translate(-50%,-50%) rotate(45deg);
  color: #ffc21c;
  font: 800 11px/1 "DM Mono", monospace;
  box-shadow: inset 0 0 22px rgba(255,194,28,.07), 0 0 30px rgba(255,194,28,.06);
}

.project-symbol i { transform: rotate(-45deg); font-style: normal; }
.project-year { color: #ffc21c; font: 700 13px/1 "DM Mono", monospace; letter-spacing: .08em; }
.project-card h3 { margin: 13px 0 11px; font: 700 24px/1.42 "Noto Sans TC", sans-serif; }
.project-card h3 em { color: #ffc21c; font-style: normal; }
.project-card > p { margin: 0; color: #bad1c2; font: 13px/1.8 "Noto Sans TC", sans-serif; }

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.project-tags li {
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.14);
  color: #d7e8dc;
  font: 500 9px/1 "DM Mono", monospace;
  letter-spacing: .08em;
}

.project-card > a {
  margin-top: auto;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.project-card > a span { color: #ffc21c; margin-left: 7px; }

.collab-cta {
  position: relative;
  overflow: hidden;
  padding: 98px 0;
  background: #f3f6ef;
}

.collab-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#89a492 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .24;
  mask-image: linear-gradient(90deg, #000, transparent 48%);
}

.collab-grid {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.collab-copy h2 {
  margin: 13px 0 20px;
  color: #075b32;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.2;
  letter-spacing: -.06em;
}

.collab-copy h2 em { color: #3ea84a; font-style: normal; }
.collab-copy > p:last-child { max-width: 520px; color: #526d5b; font: 15px/1.9 "Noto Sans TC", sans-serif; }

.collab-console {
  border: 1px solid #bed0c2;
  background: rgba(255,255,255,.88);
  box-shadow: 16px 16px 0 #dfe9dd, 0 22px 60px rgba(7,91,50,.1);
}

.console-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid #dce6d9;
  background: #edf2eb;
}

.console-bar i { width: 8px; height: 8px; border-radius: 50%; background: #aac0af; }
.console-bar i:first-child { background: #ffc21c; }
.console-bar span { margin-left: auto; color: #52705d; font: 600 9px/1 "DM Mono", monospace; letter-spacing: .11em; }
.console-body { padding: 30px; }
.console-command { margin: 0 0 22px; color: #075b32; font: 600 13px/1.6 "DM Mono", monospace; }
.console-command::before { content: "> "; color: #3ea84a; }
.console-services { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.console-services span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #dce6d9;
  color: #274b37;
  font-size: 12px;
  font-weight: 700;
}

.console-services span::before { content: "+"; color: #e2a400; font: 800 16px/1 "DM Mono", monospace; }

.console-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #dce6d9;
}

.console-contact small { display: block; color: #76907f; font: 9px/1.4 "DM Mono", monospace; letter-spacing: .1em; }
.console-contact b { display: block; margin-top: 5px; color: #075b32; font-size: 15px; }
.console-contact .btn { white-space: nowrap; }

@keyframes projectPulse { 0%,100% { opacity: .6; } 50% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .project-status::before { animation: none; }
  .project-card, .project-card::after { transition: none; }
}

@media (max-width: 900px) {
  .project-band-head, .collab-grid { grid-template-columns: 1fr; gap: 30px; }
  .project-track { grid-template-columns: 1fr; }
  .project-track::before { left: 31px; right: auto; top: 3%; bottom: 3%; width: 1px; height: auto; }
  .project-card { min-height: 365px; }
  .project-band-note { max-width: 520px; }
}

@media (max-width: 600px) {
  .project-band, .collab-cta { padding: 66px 0 72px; }
  .project-band h2, .collab-copy h2 { font-size: 38px; }
  .project-card { padding: 22px; }
  .console-body { padding: 22px; }
  .console-services { grid-template-columns: 1fr; }
  .console-contact { align-items: stretch; flex-direction: column; }
  .console-contact .btn { text-align: center; }
  .collab-console { box-shadow: 8px 8px 0 #dfe9dd; }
}
