:root {
  --dark:          #1C0D40;
  --dark-2:        #2A1560;
  --purple:        #7635A8;
  --purple-mid:    #9348CC;
  --purple-light:  #F2EAFB;
  --gold:          #C8870B;
  --gold-bg:       #FDF4E3;
  --coral:         #C8503C;
  --blue:          #2656A3;
  --ink:           #1A0E30;
  --muted:         #695880;
  --border:        #E2D5F2;
  --paper:         #FAF8FF;
  --white:         #FFFFFF;
  --r:             12px;
  --sh:            0 2px 12px rgba(28,13,64,.08);
  --sh-md:         0 8px 32px rgba(28,13,64,.12);
  --sh-lg:         0 20px 64px rgba(28,13,64,.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans TC","PingFang TC","Microsoft JhengHei",system-ui,sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ══ HEADER ══ */
.header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 20px;
  min-height: 68px;
  padding: 0 clamp(16px,5vw,56px);
  background: rgba(250,248,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(28,13,64,.08);
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--purple); color: #fff;
  display: grid; place-items: center;
  font-size: 20px; font-weight: 900;
}
.brand-text strong { display: block; font-size: 15px; font-weight: 800; line-height: 1.2; }
.brand-text small  { font-size: 11px; color: var(--muted); letter-spacing: .3px; }
.header-nav { display: flex; gap: 4px; margin-left: auto; }
.header-nav a {
  padding: 8px 13px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  transition: all .15s;
}
.header-nav a:hover { color: var(--purple); background: var(--purple-light); }
.header-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 10px;
  background: var(--purple); color: #fff;
  font-size: 14px; font-weight: 700;
  transition: all .2s; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(118,53,168,.3);
}
.header-cta:hover {
  background: var(--dark-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(118,53,168,.4);
}

/* hamburger */
.menu-btn {
  display: none; margin-left: auto;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--ink);
}
.menu-bars { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.menu-bars span {
  display: block; height: 2px; background: currentColor;
  border-radius: 2px; transition: all .25s;
}
.menu-btn.is-open .menu-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.is-open .menu-bars span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.is-open .menu-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  display: none;
  position: fixed; inset: 68px 0 0;
  background: var(--white); z-index: 99;
  padding: 20px 16px 32px;
  flex-direction: column; gap: 4px;
  border-top: 1px solid var(--border);
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: 14px 16px; border-radius: 10px;
  font-size: 17px; font-weight: 700; transition: all .15s;
}
.mobile-nav a:hover { background: var(--purple-light); color: var(--purple); }
.mobile-nav .m-cta {
  margin-top: 12px; text-align: center;
  padding: 16px; border-radius: 12px;
  background: var(--purple); color: #fff;
}

/* ══ HERO ══ */
.hero {
  position: relative; overflow: hidden;
  background: var(--dark); color: #fff;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
  min-height: calc(100svh - 68px);
}

/* floating particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hp {
  position: absolute; border-radius: 50%;
  background: rgba(118,53,168,.18); animation: floatUp 8s infinite ease-in-out;
}
.hp-1 { width: 320px; height: 320px; top: -80px; right: -60px; animation-delay: 0s; background: rgba(147,72,204,.15); }
.hp-2 { width: 180px; height: 180px; bottom: 10%; left: 5%; animation-delay: 2.5s; background: rgba(200,135,11,.1); }
.hp-3 { width: 120px; height: 120px; top: 30%; right: 18%; animation-delay: 4s; }
.hp-4 { width: 60px; height: 60px; bottom: 25%; right: 30%; animation-delay: 1.5s; background: rgba(192,132,252,.12); }
.hp-5 { width: 80px; height: 80px; top: 15%; left: 35%; animation-delay: 3s; }
@keyframes floatUp {
  0%,100% { transform: translateY(0) scale(1); opacity: .6; }
  50%      { transform: translateY(-28px) scale(1.06); opacity: 1; }
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 90% 35%, rgba(118,53,168,.6) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 10% 85%, rgba(200,135,11,.15) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(147,72,204,.2) 0%, transparent 50%);
}
.hero-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(44px,8vw,88px) clamp(24px,5vw,72px);
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.07);
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.75);
  letter-spacing: .5px; width: fit-content; margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #C084FC; flex-shrink: 0;
  box-shadow: 0 0 10px #C084FC;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 6px #C084FC; }
  50%      { box-shadow: 0 0 16px #C084FC, 0 0 30px rgba(192,132,252,.4); }
}
.badge::before { display: none; } /* replaced by .badge-dot */
.hero-title {
  font-size: clamp(40px,5vw,68px); font-weight: 900;
  line-height: 1.1; letter-spacing: -.5px; margin-bottom: 22px;
}
.hero-title em { font-style: normal; color: #E9D5FF; }
.hero-desc {
  font-size: clamp(15px,1.8vw,17px); color: rgba(255,255,255,.6);
  max-width: 440px; margin-bottom: 36px; line-height: 1.85;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 52px; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px;
  background: #fff; color: var(--dark);
  font-size: 15px; font-weight: 800;
  transition: all .2s;
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,.34); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
  font-size: 15px; font-weight: 700;
  background: rgba(255,255,255,.06);
  transition: all .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
}
.stat { padding: 20px 18px; background: rgba(255,255,255,.04); }
.stat-val { font-size: 30px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.stat-val.gold   { color: #fde68a; }
.stat-val.purple { color: #E9D5FF; }
.stat-lab { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.4; }

/* hero art */
.hero-art {
  display: flex; align-items: center; justify-content: center;
  padding: 48px 40px; overflow: hidden;
}
.campus { position: relative; width: min(90%,420px); aspect-ratio: 1; }
.c-glow {
  position: absolute; width: 68%; height: 68%; border-radius: 50%;
  background: rgba(118,53,168,.35); top: 10%; right: 5%; filter: blur(50px);
}
.c-sun {
  position: absolute; top: 6%; right: 13%; width: 18%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #fde68a, #fbbf24);
  box-shadow: 0 0 48px rgba(251,191,36,.35);
}
.c-mtn {
  position: absolute; bottom: 26%; left: 0; right: 0; height: 22%;
  clip-path: polygon(0 80%,18% 30%,36% 58%,55% 18%,74% 50%,89% 32%,100% 72%,100% 100%,0 100%);
  background: rgba(255,255,255,.1);
}
.c-main {
  position: absolute; bottom: 22%; left: 21%; width: 58%; height: 42%;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg,#b39acc,#9370B8);
  border: 3px solid rgba(255,255,255,.22); overflow: hidden;
}
.c-main::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg,transparent 0,transparent 20px,rgba(255,255,255,.14) 20px,rgba(255,255,255,.14) 22px),
    repeating-linear-gradient(0deg,transparent 0,transparent 20px,rgba(0,0,0,.07) 20px,rgba(0,0,0,.07) 22px);
}
.c-wing {
  position: absolute; bottom: 20%; width: 21%; height: 28%;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg,#7635A8,#5A1E8C);
  border: 2px solid rgba(255,255,255,.18);
}
.c-wing-l { left: 5%; }
.c-wing-r { right: 5%; }
.c-ground {
  position: absolute; bottom: 0; left: 0; right: 0; height: 25%;
  background: linear-gradient(180deg,rgba(42,21,96,.5),rgba(28,13,64,.75));
  border-radius: 0 0 16px 16px;
}
.c-year {
  position: absolute; bottom: 4%; left: 50%; transform: translateX(-50%);
  font-size: clamp(48px,9vw,88px); font-weight: 900;
  color: rgba(255,255,255,.07); white-space: nowrap; letter-spacing: -3px;
  user-select: none;
}

/* ══ QUICK BAR ══ */
.quick-bar {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: var(--dark-2); color: #fff;
}
.quick-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 26px clamp(16px,3vw,36px);
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.quick-item:last-child { border-right: 0; }
.quick-item:hover { background: rgba(255,255,255,.07); }
.quick-item strong { display: block; font-size: clamp(16px,2vw,19px); font-weight: 800; }
.quick-item span { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 3px; display: block; }
.q-arrow { font-size: 18px; color: rgba(255,255,255,.28); transition: all .2s; flex-shrink: 0; }
.quick-item:hover .q-arrow { transform: translateX(5px); color: rgba(255,255,255,.65); }

/* ══ SECTIONS ══ */
.sec { padding: clamp(60px,8vw,96px) clamp(20px,5vw,72px); }
.sec-label {
  display: block; font-size: 11px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--purple); margin-bottom: 10px;
}
.sec-title {
  font-size: clamp(26px,3.2vw,42px); font-weight: 900;
  line-height: 1.2; letter-spacing: -.3px; margin-bottom: 10px;
}
.sec-desc {
  font-size: 16px; color: var(--muted);
  max-width: 600px; margin-bottom: 44px; line-height: 1.85;
}

/* method cards */
.method-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.m-card {
  padding: 32px 28px; border-radius: var(--r);
  border: 1px solid var(--border); background: var(--white);
  box-shadow: var(--sh); transition: all .25s;
}
.m-card:hover {
  transform: translateY(-4px); box-shadow: var(--sh-lg);
  border-color: rgba(118,53,168,.25);
}
.m-num { font-size: 40px; font-weight: 900; line-height: 1; color: var(--purple); margin-bottom: 18px; }
.m-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.m-card p  { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* schedule */
.sched-wrap {
  display: grid;
  grid-template-columns: minmax(260px,.65fr) 1fr;
  gap: clamp(32px,5vw,72px); align-items: start;
}
.sched-left { position: sticky; top: 88px; }
.info-box {
  margin-top: 20px; padding: 16px 18px;
  border-radius: 10px; background: var(--purple-light);
  border-left: 4px solid var(--purple);
}
.info-box strong { font-size: 13px; color: var(--purple); display: block; margin-bottom: 4px; }
.info-box p { font-size: 13px; color: var(--muted); line-height: 1.75; margin: 0; }
.timeline { display: flex; flex-direction: column; gap: 14px; }
.tl-item {
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  align-items: center; padding: 20px 22px; border-radius: var(--r);
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--sh); transition: all .2s;
}
.tl-item:hover {
  transform: translateX(5px); border-color: var(--purple);
  box-shadow: 0 4px 20px rgba(118,53,168,.12);
}
.tl-time {
  text-align: center; padding: 10px 14px; border-radius: 8px;
  background: var(--dark); color: rgba(255,255,255,.8);
  font-size: 12px; font-weight: 700; line-height: 1.5; white-space: nowrap;
}
.tl-subj { font-size: 22px; font-weight: 800; }
.tl-note { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* locations */
.loc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.loc-card {
  padding: 26px; border-radius: var(--r);
  background: var(--white); border: 1px solid var(--border); box-shadow: var(--sh);
}
.loc-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 6px;
  background: var(--purple-light); color: var(--purple);
  font-size: 12px; font-weight: 700; margin-bottom: 14px;
}
.loc-tag.gold-tag { background: var(--gold-bg); color: var(--gold); }
.loc-card h3    { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.loc-sub        { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.loc-card address { font-style: normal; font-size: 13px; color: var(--muted); line-height: 1.65; }

/* scholarship */
.award-wrap {
  border-radius: 18px; overflow: hidden;
  background: var(--dark); color: #fff;
}
.award-inner { display: grid; grid-template-columns: minmax(260px,.7fr) 1fr; }
.award-feat {
  padding: clamp(36px,5vw,64px) clamp(24px,4vw,52px);
  background: rgba(255,255,255,.04);
  border-right: 1px solid rgba(255,255,255,.08);
}
.award-feat strong {
  display: block; font-size: clamp(30px,3.8vw,50px); font-weight: 900;
  line-height: 1.18; margin-bottom: 14px; color: #fde68a;
}
.award-feat p { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.85; }
.award-list-wrap {
  padding: clamp(28px,4vw,52px);
  display: flex; flex-direction: column; gap: 10px; justify-content: center;
}
.award-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.award-row:hover { background: rgba(255,255,255,.09); }
.award-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7); }
.award-amt   { font-size: 22px; font-weight: 900; color: #fcd34d; white-space: nowrap; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 840px; }
.faq-item { border-radius: var(--r); border: 1px solid var(--border); background: var(--white); overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; user-select: none;
  font-size: 16px; font-weight: 700; transition: background .15s;
}
.faq-q:hover { background: var(--purple-light); }
.faq-icon { font-size: 18px; color: var(--purple); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 14px; color: var(--muted); line-height: 1.85; padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-card {
  padding: 30px; border-radius: var(--r);
  background: var(--white); border: 1px solid var(--border); box-shadow: var(--sh);
}
.contact-card h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 800; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 2px solid var(--purple-light);
}
.c-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--purple-light); color: var(--purple);
  display: grid; place-items: center; font-size: 17px; flex-shrink: 0;
}
.c-row { display: flex; gap: 10px; margin-bottom: 10px; font-size: 14px; }
.c-lbl { font-size: 12px; font-weight: 700; color: var(--muted); white-space: nowrap; padding-top: 2px; }
.c-row a { color: var(--purple); font-weight: 700; }

/* footer */
.footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding: 24px clamp(20px,5vw,72px);
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--muted);
}
.footer a { color: var(--purple); font-weight: 700; }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .header-nav, .header-cta { display: none; }
  .menu-btn { display: flex; }
  .mobile-nav { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-art { display: none; }
  .hero-body { padding: 48px 24px 52px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat:last-child { grid-column: 1/-1; }
  .quick-bar { grid-template-columns: 1fr; }
  .quick-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .quick-item:last-child { border-bottom: 0; }
  .method-grid, .loc-grid, .contact-grid { grid-template-columns: 1fr; }
  .sched-wrap { grid-template-columns: 1fr; }
  .sched-left  { position: static; }
  .award-inner { grid-template-columns: 1fr; }
  .award-feat  { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 600px) {
  .hero-title { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .btn-white, .btn-outline { width: 100%; justify-content: center; }
  .sec-title { font-size: 26px; }
  .stat-val  { font-size: 26px; }
}

/* ══ NEW LANDING PAGE ELEMENTS ══════════════════════════════════════ */

/* Hero new buttons */
.btn-primary-lg {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 14px;
  background: linear-gradient(135deg,#9348CC,#7635A8);
  color: #fff; font-size: 16px; font-weight: 800;
  box-shadow: 0 8px 32px rgba(118,53,168,.5);
  transition: all .22s; border: none;
}
.btn-primary-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(118,53,168,.65);
  background: linear-gradient(135deg,#A855F7,#9348CC);
}
.btn-ghost-lg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.82); font-size: 16px; font-weight: 700;
  background: rgba(255,255,255,.05); transition: all .22s;
}
.btn-ghost-lg:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.4); }

/* Countdown */
.countdown-box {
  margin-top: 36px;
  padding: 20px 24px; border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: inline-block;
}
.cd-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 10px;
}
.cd-grid {
  display: flex; align-items: center; gap: 6px; margin-bottom: 10px;
}
.cd-unit { text-align: center; min-width: 56px; }
.cd-num {
  font-size: 38px; font-weight: 900; line-height: 1;
  color: #fde68a; letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}
.cd-sub { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }
.cd-colon {
  font-size: 28px; font-weight: 900; color: rgba(255,255,255,.3);
  padding-bottom: 14px; line-height: 1;
}
.cd-date { font-size: 12px; color: rgba(255,255,255,.4); }

/* Stats bar */
.stats-bar {
  display: flex; align-items: stretch;
  background: var(--dark-2); color: #fff;
}
.sb-item {
  flex: 1; padding: 28px 24px; text-align: center;
  transition: background .2s;
}
.sb-item:hover { background: rgba(255,255,255,.05); }
.sb-val {
  font-size: clamp(26px,3vw,38px); font-weight: 900;
  line-height: 1; margin-bottom: 6px; color: #fff;
}
.sb-lab { font-size: 12px; color: rgba(255,255,255,.4); }
.sb-div { width: 1px; background: rgba(255,255,255,.07); }
.sb-gold .sb-val   { color: #fde68a; }
.sb-purple .sb-val { color: #c084fc; }

/* Features section */
.sec-dark-grad {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 50%, #3B1878 100%);
  color: #fff;
}
.feat-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
  margin-top: 44px;
}
.feat-card {
  padding: 32px 24px; border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .25s;
}
.feat-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(147,72,204,.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(118,53,168,.3);
}
.feat-icon { font-size: 36px; margin-bottom: 16px; }
.feat-card h3 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.feat-card p  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; }

.students-origin {
  margin-top: 48px; padding: 24px 28px; border-radius: 14px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.so-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.45); white-space: nowrap; }
.so-tags  { display: flex; flex-wrap: wrap; gap: 8px; }
.so-tag {
  padding: 5px 14px; border-radius: 999px;
  background: rgba(147,72,204,.25); border: 1px solid rgba(147,72,204,.4);
  font-size: 13px; font-weight: 700; color: #d8b4fe;
}
.so-more { font-size: 13px; color: rgba(255,255,255,.3); padding: 5px 4px; }

/* Admission paths */
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.path-card {
  padding: 40px 36px; border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--white); box-shadow: var(--sh-md);
  display: flex; flex-direction: column; gap: 0;
  transition: all .25s;
}
.path-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.path-apply { border-color: var(--purple); }
.path-exam  { border-color: var(--gold); }
.path-num {
  font-size: 64px; font-weight: 900; line-height: 1;
  color: var(--purple-light); margin-bottom: 8px;
}
.path-exam .path-num { color: var(--gold-bg); }
.path-card h3 { font-size: 24px; font-weight: 900; margin-bottom: 14px; }
.path-card p  { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.path-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 28px; flex: 1;
}
.path-list li { font-size: 14px; color: var(--muted); }
.path-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 24px; border-radius: 10px;
  background: var(--purple); color: #fff;
  font-size: 15px; font-weight: 800;
  width: fit-content; transition: all .2s;
  box-shadow: 0 4px 16px rgba(118,53,168,.3);
}
.path-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(118,53,168,.45); }
.path-btn-out {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold); box-shadow: none;
}
.path-btn-out:hover { background: var(--gold); color: #fff; box-shadow: 0 8px 28px rgba(200,135,11,.35); }

/* Exam detail */
.sec-paper { background: var(--paper); }
.exam-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.etl-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.etl-date {
  font-size: 20px; font-weight: 900; color: var(--dark);
  padding: 8px 18px; border-radius: 10px;
  background: var(--purple-light); color: var(--purple);
}
.etl-note { font-size: 13px; color: var(--muted); font-weight: 600; }
.exam-venues { display: flex; flex-direction: column; gap: 16px; }
.venue-card {
  padding: 24px 28px; border-radius: 16px;
  border: 1.5px solid var(--border); background: var(--white);
  box-shadow: var(--sh); transition: all .22s;
}
.venue-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.vc-badge {
  display: inline-flex; padding: 4px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 800; margin-bottom: 10px;
}
.vc-taipei .vc-badge { background: #EEF2FF; color: #3B52D4; }
.vc-yilan  .vc-badge { background: var(--purple-light); color: var(--purple); }
.venue-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.vc-room { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.venue-card address { font-style: normal; font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.vc-note {
  font-size: 12px; color: var(--purple); font-weight: 600;
  padding: 6px 10px; border-radius: 6px; background: var(--purple-light);
}

/* Award section redesign */
.sec-award {
  background: linear-gradient(160deg, #1A0638, var(--dark) 60%);
  color: #fff;
}
.award-inner { display: grid; grid-template-columns: minmax(260px,.65fr) 1fr; }
.award-feat {
  padding: clamp(36px,5vw,64px) clamp(24px,4vw,52px);
  border-right: 1px solid rgba(255,255,255,.08);
}
.award-title {
  display: block; font-size: clamp(32px,4vw,52px); font-weight: 900;
  line-height: 1.15; margin: 12px 0 16px;
  background: linear-gradient(135deg,#fde68a,#fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.award-feat p { font-size: 15px; color: rgba(255,255,255,.52); line-height: 1.85; }
.award-list-wrap {
  padding: clamp(28px,4vw,52px);
  display: flex; flex-direction: column; gap: 8px; justify-content: center;
}
.award-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 20px; border-radius: 10px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.award-row:hover { background: rgba(255,255,255,.08); }
.award-top { border-color: rgba(251,191,36,.35); background: rgba(251,191,36,.06); }
.award-cate  { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.award-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7); }
.award-amt   { font-size: 20px; font-weight: 900; color: #fcd34d; white-space: nowrap; }
.award-amt-big { font-size: 28px; color: #fde68a; }
.award-divider { height: 1px; background: rgba(255,255,255,.07); margin: 4px 0; }

/* Mid CTA */
.mid-cta {
  background: linear-gradient(135deg, var(--purple), #5A1E8C);
  padding: 52px clamp(20px,5vw,72px);
}
.mid-cta-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.mid-cta-title {
  font-size: clamp(22px,3vw,32px); font-weight: 900; color: #fff;
  margin-bottom: 6px;
}
.mid-cta-title em { font-style: normal; color: #fde68a; }
.mid-cta-sub { font-size: 15px; color: rgba(255,255,255,.6); }
.btn-cta-lg {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 36px; border-radius: 14px;
  background: #fff; color: var(--purple);
  font-size: 16px; font-weight: 800; white-space: nowrap;
  transition: all .22s;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.btn-cta-lg:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 48px rgba(0,0,0,.3); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.revealed { opacity: 1; transform: none; }
.feat-card:nth-child(2) { transition-delay: .08s; }
.feat-card:nth-child(3) { transition-delay: .16s; }
.feat-card:nth-child(4) { transition-delay: .24s; }
.path-card:nth-child(2) { transition-delay: .1s; }
.venue-card:nth-child(2){ transition-delay: .1s; }

/* t-white helper */
.t-white { color: #fff; }

/* hero-actions bottom margin reduced (countdown replaces old hero-stats) */
.hero-actions { margin-bottom: 0; }

/* ── NEW responsive overrides ── */
@media (max-width: 900px) {
  .stats-bar { flex-wrap: wrap; }
  .sb-item   { flex: 1 1 40%; }
  .sb-div    { display: none; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .path-grid { grid-template-columns: 1fr; }
  .exam-wrap { grid-template-columns: 1fr; }
  .award-inner { grid-template-columns: 1fr; }
  .award-feat  { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .mid-cta-inner { flex-direction: column; text-align: center; }
  .students-origin { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .feat-grid { grid-template-columns: 1fr; }
  .cd-num    { font-size: 28px; }
  .btn-primary-lg, .btn-ghost-lg, .btn-cta-lg { width: 100%; justify-content: center; }
}
