:root {
  --white: #ffffff;
  --paper: #f8fcff;
  --paper-2: #edf9ff;
  --ink: #0f2d48;
  --text: #496477;
  --muted: #8a9aab;
  --blue-deep: #0068b7;
  --blue: #078bd3;
  --cyan: #18b8d5;
  --green: #22b99a;
  --lime: #9fc75a;
  --gold: #e6b24d;
  --coral: #de725f;
  --line: rgba(7, 139, 211, 0.15);
  --shadow: 0 24px 60px rgba(6, 96, 154, 0.11);
  --shadow-soft: 0 14px 34px rgba(12, 90, 145, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f9fdff 48%, #f4fbff 100%);
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex;
  flex-direction: column;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.page-bg { position: fixed; inset: 0; z-index: -5; pointer-events: none; overflow: hidden; }
.soft-orb { position: absolute; border-radius: 999px; filter: blur(10px); opacity: .72; }
.orb-a { width: 620px; height: 620px; right: -230px; top: 10px; background: radial-gradient(circle, rgba(34,185,154,.12), rgba(7,139,211,.08) 48%, transparent 70%); }
.orb-b { width: 520px; height: 520px; left: -240px; top: 420px; background: radial-gradient(circle, rgba(7,139,211,.10), rgba(24,184,213,.045) 56%, transparent 74%); }
.orb-c { width: 360px; height: 360px; right: 20%; bottom: 10%; background: radial-gradient(circle, rgba(159,199,90,.065), transparent 70%); }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(255,255,255,.80), rgba(235,249,255,.56) 46%, rgba(243,255,251,.46)),
    rgba(255,255,255,.72);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  border-bottom: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 10px 32px rgba(5, 86, 148, .06);
  transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(7,139,211,.10), transparent 32%),
    radial-gradient(circle at 82% 0%, rgba(34,185,154,.09), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,0));
  opacity: .9;
}
.site-header.is-scrolled {
  background:
    linear-gradient(112deg, rgba(255,255,255,.9), rgba(238,249,255,.68) 48%, rgba(244,255,251,.58)),
    rgba(255,255,255,.82);
  border-color: rgba(10, 142, 219, .10);
  box-shadow: 0 14px 38px rgba(15, 85, 135, .10);
}
.header-shell {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.brand-logo { width: 54px; height: 54px; object-fit: contain; }
.brand-name { font-size: 22px; font-weight: 800; letter-spacing: .04em; color: var(--blue-deep); white-space: nowrap; }
.nav { display: flex; align-items: center; justify-content: center; gap: 8px; flex: 1 1 auto; }
.nav a { position: relative; padding: 10px 13px; font-size: 15px; color: #40566a; border-radius: 999px; transition: color .2s ease, background .2s ease; }
.nav a::after { content: ""; position: absolute; left: 18px; right: 18px; bottom: 5px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--green)); border-radius: 2px; transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.nav a:hover, .nav a.active { color: var(--blue-deep); background: rgba(10,142,219,.06); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.header-actions a, .header-actions button { font-size: 14px; padding: 9px 17px; border-radius: 999px; transition: all .2s ease; border: 0; font-family: inherit; cursor: pointer; }
.header-actions .ghost { color: var(--blue-deep); background: #f2f8ff; }
.header-actions .solid { color: #fff; background: linear-gradient(135deg, var(--blue-deep), var(--blue)); box-shadow: 0 10px 24px rgba(0, 94, 168, .22); }
.header-actions .user-state { max-width: 320px; color: var(--blue-deep); background: rgba(238,248,255,.9); border: 1px solid rgba(10,142,219,.14); font-weight: 800; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; cursor: default; }
.header-actions a:hover, .header-actions button:hover { transform: translateY(-1px); }

main { flex: 1 0 auto; min-height: calc(100vh - var(--header-h)); }
.page-panel { animation: panelIn .22s ease both; }
.page-panel:not(.is-active) { display: none; }
.portal-card { scroll-margin-top: calc(var(--header-h) + 24px); }
.hero-art {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(10,142,219,.08);
  background:
    linear-gradient(180deg, rgba(235,249,255,.94) 0%, rgba(255,255,255,.88) 48%, rgba(232,250,255,.90) 100%);
}
.hero-art::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(34,185,154,.105), transparent 25%),
    radial-gradient(circle at 68% 45%, rgba(7,139,211,.12), transparent 32%),
    radial-gradient(circle at 18% 22%, rgba(24,184,213,.055), transparent 30%);
  z-index: 0;
}
.hero-gradient {
  position: absolute; inset: auto -12% -22% -12%; height: 42%; z-index: 1;
  background:
    radial-gradient(ellipse at 35% 45%, rgba(255,255,255,.92), rgba(255,255,255,0) 58%),
    linear-gradient(105deg, rgba(236,246,232,.34), rgba(185,235,246,.30) 35%, rgba(166,232,239,.42) 74%, rgba(255,255,255,0));
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
}
.hero-particles { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; opacity: .86; }
.hero-line-art { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.line { position: absolute; border: 1px solid rgba(0, 94, 168, .08); border-radius: 50%; }
.line-a { width: 720px; height: 230px; right: -220px; top: 108px; transform: rotate(-10deg); }
.line-b { width: 900px; height: 260px; right: -280px; bottom: 110px; transform: rotate(9deg); }
.line-c { width: 680px; height: 180px; left: -220px; bottom: 64px; transform: rotate(-8deg); }
.hero-shell {
  position: relative; z-index: 3;
  width: min(1220px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 76px;
  align-items: center;
  padding: 82px 0 86px;
}
.section-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--blue-deep); }
.section-eyebrow::before { content: ""; width: 30px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--blue), var(--green)); }
.slogan { margin: 22px 0 12px; font-size: clamp(50px, 6.4vw, 92px); line-height: .98; font-weight: 950; letter-spacing: .08em; }
.slogan-line { display: block; white-space: nowrap; }
.slogan-char { display: inline-block; position: relative; padding-right: .015em; text-shadow: 0 12px 28px rgba(0,94,168,.12); transform: skewX(-7deg); animation: sloganIn .9s ease both; }
.slogan-line:nth-child(2) .slogan-char { animation-delay: .12s; }
.slogan-char.c-blue { color: #0b7ed0; }
.slogan-char.c-teal { color: #1f9fbd; }
.slogan-char.c-green { color: #6fb86a; }
.slogan-char.c-lime { color: #a7c64f; }
.slogan-char.c-gold { color: #dfa94a; }
.slogan-char.c-coral { color: #d96f5b; }
.slogan-char::after { content: attr(data-char); position: absolute; inset: 0; transform: translate(2px, 2px); opacity: .08; color: #005ea8; z-index: -1; }
.hero-subtitle { margin: 22px 0 0; font-size: clamp(22px, 2.1vw, 32px); font-weight: 900; letter-spacing: .26em; color: #247fa8; }
.hero-desc { max-width: 560px; margin: 22px 0 0; color: var(--text); line-height: 1.9; font-size: 16px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn { position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; min-width: 132px; height: 46px; padding: 0 24px; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.btn::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.36) 45%, transparent 70%); transform: translateX(-120%); transition: transform .65s ease; }
.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue-deep), var(--blue) 58%, var(--cyan)); box-shadow: 0 18px 36px rgba(0, 104, 183, .22); }
.btn-secondary { color: var(--blue-deep); background: rgba(255,255,255,.72); border: 1px solid rgba(0,94,168,.16); box-shadow: 0 12px 28px rgba(5,86,148,.08); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.meta-pill { padding: 8px 12px; border-radius: 999px; font-size: 13px; color: #477085; background: rgba(255,255,255,.62); border: 1px solid rgba(10,142,219,.12); backdrop-filter: blur(10px); }

.hero-emblem { min-height: 430px; display: flex; align-items: center; justify-content: center; }
.emblem-stage { position: relative; width: min(440px, 100%); aspect-ratio: 1; display: grid; place-items: center; perspective: 900px; }
.glass-disc { position: absolute; width: 88%; height: 88%; border-radius: 50%; background:
  radial-gradient(circle at 34% 25%, rgba(255,255,255,.94), rgba(255,255,255,.2) 30%, transparent 62%),
  linear-gradient(145deg, rgba(0,142,219,.105), rgba(34,185,154,.105));
  border: 1px solid rgba(255,255,255,.74); box-shadow: inset 0 12px 35px rgba(255,255,255,.62), 0 26px 72px rgba(0,104,183,.14); filter: blur(.1px); }
.emblem-logo { position: relative; z-index: 5; width: 70%; height: 70%; object-fit: contain; filter: drop-shadow(0 18px 28px rgba(0, 104, 183, .18)); animation: floatEmblem 5.8s ease-in-out infinite; }
.orbit { position: absolute; border-radius: 50%; border: 2px solid rgba(7,139,211,.20); transform-style: preserve-3d; }
.orbit-a { width: 96%; height: 40%; transform: rotate(-14deg); border-left-color: rgba(34,185,154,.24); animation: orbitPulse 5s ease-in-out infinite; }
.orbit-b { width: 82%; height: 34%; transform: rotate(36deg); border-right-color: rgba(222,114,95,.20); animation: orbitPulse 6.5s ease-in-out infinite reverse; }
.orbit-c { width: 104%; height: 44%; transform: rotate(70deg); border-top-color: rgba(159,199,90,.20); opacity: .65; }
.emblem-shadow { position: absolute; bottom: 24px; width: 64%; height: 42px; border-radius: 50%; background: radial-gradient(ellipse, rgba(0,94,168,.18), rgba(0,191,166,.08) 48%, transparent 70%); filter: blur(12px); }
.emblem-label { position: absolute; z-index: 7; right: 18px; bottom: 84px; padding: 8px 14px; border-radius: 999px; color: #086f9f; background: rgba(255,255,255,.76); border: 1px solid rgba(7,139,211,.14); font-size: 13px; font-weight: 800; box-shadow: 0 12px 26px rgba(0,104,183,.075); backdrop-filter: blur(12px); }

.section-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section-soft { background: linear-gradient(180deg, rgba(247,251,255,.82), rgba(255,255,255,.76)); }
.guide-section, .category-section, .stage-section, .showcase-section, .notice-section { padding: 76px 0; }
.section-title-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 30px; }
.section-title-row.compact { align-items: center; }
.section-title-row.is-center-title { align-items: center; justify-content: center; text-align: center; }
.section-title-row.is-center-title .section-eyebrow { justify-content: center; }
.portal-module-header { align-items: flex-end; }
.portal-module-header .portal-module-heading { min-width: 0; }
.portal-module-header .section-title { word-break: break-word; }
.portal-module-header .section-intro { margin: 0; }
.portal-module-header .portal-module-more { flex: 0 0 auto; align-self: center; color: var(--blue-deep); font-size: 14px; font-weight: 900; text-decoration: none; white-space: nowrap; }
.portal-module-header-extra { display: flex; align-items: center; justify-content: flex-end; gap: 20px; min-width: 0; }
.page-header-align-center { display: block; text-align: center; }
.page-header-align-center .section-eyebrow { justify-content: center; }
.page-header-align-center .section-intro { margin: 12px auto 0; }
.page-header-align-center .portal-module-more { display: inline-flex; margin-top: 14px; }
.page-header-align-left { display: block; }
.page-header-align-left .section-intro { margin-top: 12px; }
.page-header-align-left .portal-module-more { display: inline-flex; margin-top: 14px; }
.page-header-align-split { display: flex; }
.page-header-size-compact { margin-bottom: 20px; }
.page-header-size-compact .section-title { font-size: clamp(24px, 2.4vw, 34px); }
.page-header-size-large { margin-bottom: 42px; }
.page-header-size-large .section-title { font-size: clamp(38px, 4vw, 56px); }
.section-title { margin: 10px 0 0; font-size: clamp(30px, 3.2vw, 42px); line-height: 1.18; font-weight: 900; color: var(--ink); }
.section-intro { max-width: 520px; margin: 0; color: var(--text); line-height: 1.75; font-size: 15px; }
.section-intro.wide { max-width: 620px; margin-top: 18px; }
.center-title { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.center-title .section-eyebrow { justify-content: center; }
.center-title .section-intro { margin: 14px auto 0; }
.guide-section .section-shell { width: min(1200px, calc(100% - 48px)); }
.guide-section .section-title-row { display: block; margin-bottom: 34px; text-align: center; }
.guide-section .section-eyebrow { justify-content: center; color: var(--blue); }
.guide-section .section-title { color: var(--blue-deep); }
.guide-grid {
  display: grid;
  gap: 0;
  padding: 32px 28px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10,142,219,.12);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.guide-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 130px;
  gap: 38px;
  align-items: center;
  min-height: 104px;
  padding: 24px 10px;
  border-bottom: 1px solid rgba(16,42,67,.10);
}
.guide-card:last-child { border-bottom: 0; }
.guide-card:hover .guide-name { border-color: rgba(10,142,219,.36); box-shadow: 0 10px 24px rgba(5,86,148,.08); }
.guide-name {
  min-height: 56px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--blue-deep);
  background: #eef8ff;
  border: 1px solid rgba(10,142,219,.14);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
  text-align: center;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.guide-desc {
  margin: 0;
  color: var(--ink);
  line-height: 1.9;
  font-size: 15px;
}
.guide-action {
  min-width: 116px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border-radius: 8px;
  color: #fff;
  background: #95a5b2;
  font-size: 14px;
  font-weight: 900;
  cursor: default;
  user-select: none;
}
.guide-card.is-highlight .guide-name {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}
.guide-card.is-highlight .guide-action {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  box-shadow: 0 10px 20px rgba(0,94,168,.16);
}
.guide-icon, .category-icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; font-weight: 900; color: var(--blue-deep); background: linear-gradient(145deg, #eef8ff, #ffffff); border: 1px solid rgba(10,142,219,.14); box-shadow: inset 0 0 0 6px rgba(10,142,219,.035); }
.guide-card h3, .category-card h3, .stage-item h3, .showcase-item h3 { margin: 18px 0 8px; font-size: 20px; color: var(--ink); }
.guide-card p, .category-card p, .stage-item p, .showcase-item p { margin: 0; color: var(--text); line-height: 1.72; font-size: 14px; }
.guide-card .guide-desc { color: var(--ink); line-height: 1.9; font-size: 15px; }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.category-card { padding: 26px 18px; text-align: center; background: rgba(255,255,255,.86); border: 1px solid rgba(10,142,219,.12); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); transition: transform .22s ease, box-shadow .22s ease; }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.category-icon { margin: 0 auto; color: var(--green); }
.timeline { --stage-count: 6; position: relative; display: grid; grid-template-columns: repeat(var(--stage-count), minmax(0, 1fr)); gap: 16px; padding-top: 34px; }
.timeline::before { content: ""; position: absolute; left: 4%; right: 4%; top: 58px; height: 2px; background: linear-gradient(90deg, rgba(10,142,219,.1), rgba(0,191,166,.38), rgba(10,142,219,.1)); }
.stage-extra-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.stage-extra-grid:empty { display: none; }
.stage-extra-before { margin: 0 0 22px; }
.stage-extra-after { margin: 32px 0 0; }
.stage-extra-grid .custom-html-card,
.stage-extra-grid .portal-carousel-card,
.stage-extra-grid .portal-spacer,
.stage-extra-grid .custom-card.is-full-width {
  grid-column: 1 / -1;
}
.stage-item { position: relative; padding: 0 8px; text-align: center; }
.stage-dot { position: relative; z-index: 2; width: 50px; height: 50px; margin: 0 auto 18px; display: grid; place-items: center; color: #fff; font-weight: 900; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--green)); box-shadow: 0 12px 26px rgba(0,142,219,.22); }
.showcase-layout { display: grid; grid-template-columns: 44% 1fr; gap: 60px; align-items: center; }
.art-board { position: relative; overflow: hidden; min-height: 380px; border-radius: 38px; background: linear-gradient(135deg, rgba(228,247,255,.9), rgba(255,255,255,.9) 42%, rgba(224,249,244,.88)); border: 1px solid rgba(10,142,219,.12); box-shadow: var(--shadow); }
.art-wave { position: absolute; inset: 46% -20% auto -20%; height: 160px; border-radius: 50%; border-top: 24px solid rgba(0,191,166,.13); transform: rotate(-8deg); }
.art-circle { position: absolute; border-radius: 50%; }
.art-circle.one { width: 170px; height: 170px; right: 56px; top: 58px; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(10,142,219,.18)); }
.art-circle.two { width: 110px; height: 110px; left: 54px; bottom: 62px; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(0,191,166,.2)); }
.art-line { position: absolute; left: 48px; right: 48px; bottom: 98px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--green), transparent); }
.art-word { position: absolute; left: 54px; top: 54px; font-size: 74px; line-height: 1; font-weight: 900; color: rgba(0,94,168,.12); letter-spacing: .08em; }
.showcase-list { display: grid; gap: 16px; margin-top: 28px; }
.showcase-item { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; padding: 18px; border-radius: var(--radius-md); background: rgba(255,255,255,.82); border: 1px solid rgba(10,142,219,.1); }
.showcase-num { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; font-weight: 900; color: var(--blue-deep); background: #eef8ff; }
.notice-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.home-notice-preview {
  position: relative;
  z-index: 3;
  padding: 62px 0 96px;
  background:
    linear-gradient(110deg, rgba(255,255,255,.96) 0%, rgba(247,252,255,.92) 52%, rgba(235,250,255,.86) 100%);
}
.home-middle-section {
  position: relative;
  z-index: 3;
  padding: 46px 0 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(246,252,255,.86));
}
.home-middle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.home-middle-grid:empty { display: none; }
.home-middle-grid .custom-html-card,
.home-middle-grid .portal-carousel-card,
.home-middle-grid .portal-spacer,
.home-middle-grid .custom-card.is-full-width {
  grid-column: 1 / -1;
}
.home-notice-preview-shell { width: min(1220px, calc(100% - 56px)); margin: 0 auto; }
.home-notice-preview-title { margin: 0 0 58px; color: var(--ink); }
.home-notice-preview-title span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}
.home-notice-preview-title span::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.home-notice-preview-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.12;
  font-weight: 950;
}
.home-notice-preview-list {
  --stage-count: 6;
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--stage-count), minmax(0, 1fr));
  gap: 22px;
}
.home-notice-preview-list::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 25px;
  height: 2px;
  background: linear-gradient(90deg, rgba(10,142,219,.12), rgba(0,191,166,.36), rgba(10,142,219,.12));
}
.home-stage-item {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: center;
}
.home-stage-dot {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 12px 26px rgba(0,142,219,.18);
  font-weight: 950;
}
.home-stage-title {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.32;
  font-weight: 950;
}
.home-stage-desc {
  max-width: 168px;
  margin: 0 auto;
  color: #3f596d;
  font-size: 14px;
  line-height: 1.75;
}
.home-notice-more {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 28px;
  color: var(--blue-deep);
  font-weight: 900;
}
.notice-empty { grid-column: 1 / -1; padding: 28px; color: var(--muted); text-align: center; background: rgba(255,255,255,.78); border: 1px solid rgba(10,142,219,.1); border-radius: 18px; }
.notice-item { overflow: hidden; background: rgba(255,255,255,.9); border: 1px solid rgba(10,142,219,.12); border-radius: 18px; box-shadow: 0 16px 36px rgba(5,86,148,.08); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.notice-item:hover { transform: translateY(-4px); border-color: rgba(0,191,166,.24); box-shadow: 0 22px 46px rgba(5,86,148,.12); }
.notice-cover { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; padding: 0; border: 0; background: #eef9ff; cursor: pointer; overflow: hidden; }
.notice-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.notice-cover-placeholder { width: 100%; height: 100%; display: grid; place-items: center; align-content: center; gap: 6px; color: var(--blue-deep); background: linear-gradient(135deg, #eaf8ff, #f7fcff 54%, #e8fbf7); }
.notice-cover-placeholder.is-empty { gap: 0; }
.notice-cover-placeholder strong { font-size: 13px; letter-spacing: .18em; }
.notice-cover-placeholder em { font-style: normal; font-size: 22px; font-weight: 900; }
.notice-card-body { display: grid; gap: 10px; padding: 18px 18px 20px; }
.notice-date { color: var(--muted); font-size: 13px; font-weight: 800; }
.notice-title { display: -webkit-box; min-height: 52px; padding: 0; border: 0; color: var(--ink); background: transparent; font: inherit; font-size: 18px; line-height: 1.45; font-weight: 900; text-align: left; cursor: pointer; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.notice-title:hover { color: var(--blue-deep); }
.notice-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.notice-tag { display: inline-flex; width: fit-content; padding: 6px 10px; border-radius: 999px; color: var(--blue-deep); background: #eef8ff; font-size: 13px; font-weight: 800; }
.text-link { color: var(--blue-deep); font-weight: 800; }
.notice-list-variant-strip {
  grid-template-columns: 1fr;
}
.notice-item-strip,
.portal-notice-config-card.notice-config-strip {
  min-height: 112px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 96% 18%, rgba(0,191,166,.12), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(240,250,255,.92));
}
.notice-item-strip:hover,
.portal-notice-config-card.notice-config-strip:hover {
  transform: translateY(-2px);
}
.notice-strip-main {
  min-width: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.portal-notice-config-card .notice-strip-main {
  cursor: default;
}
.notice-strip-kicker {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
}
.notice-strip-main strong,
.notice-strip-main h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.38;
  font-weight: 950;
}
.notice-strip-main em {
  max-width: 760px;
  color: #4f6a7e;
  font-size: 14px;
  font-style: normal;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notice-strip-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.portal-spacer {
  grid-column: 1 / -1;
  height: var(--spacer-height, 56px);
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.portal-spacer.has-spacer-line {
  position: relative;
}
.portal-spacer.has-spacer-line::before {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  top: 50%;
  width: var(--spacer-line-width, 100%);
  height: var(--spacer-line-size, 1px);
  transform: translate(-50%, -50%);
  background: var(--spacer-line-color, rgba(10,142,219,.22));
}
.portal-spacer.spacer-line-gradient::before {
  background: linear-gradient(90deg, transparent, var(--spacer-line-color, rgba(10,142,219,.22)), transparent);
}
.portal-spacer.spacer-line-dashed::before {
  background: repeating-linear-gradient(90deg, var(--spacer-line-color, rgba(10,142,219,.22)) 0 10px, transparent 10px 16px);
}
.portal-spacer.spacer-line-dotted::before {
  background: repeating-linear-gradient(90deg, var(--spacer-line-color, rgba(10,142,219,.22)) 0 3px, transparent 3px 9px);
}
.portal-timeline-card {
  grid-column: 1 / -1;
  min-width: 0;
  padding: var(--portal-card-padding, 34px);
  border: 1px solid var(--timeline-border, var(--portal-card-border, rgba(10,142,219,.12)));
  border-radius: var(--portal-card-radius, 18px);
  background: var(--timeline-bg, var(--portal-card-bg,
    radial-gradient(circle at 92% 8%, rgba(0,191,166,.12), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(241,251,255,.9))));
  box-shadow: var(--portal-card-shadow, var(--shadow-soft));
}
.portal-timeline-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.portal-timeline-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .18em;
}
.portal-timeline-head span::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.portal-timeline-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
  font-weight: 950;
}
.portal-timeline-head p {
  margin: 14px 0 0;
  color: #456176;
  font-size: 15px;
  line-height: 1.8;
}
.portal-timeline-list {
  --timeline-count: 4;
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--timeline-count), minmax(0, 1fr));
  gap: 18px;
}
.portal-timeline-list::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 25px;
  height: 2px;
  background: var(--timeline-line, linear-gradient(90deg, rgba(10,142,219,.12), rgba(0,191,166,.42), rgba(10,142,219,.12)));
}
.portal-timeline-item {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  justify-items: center;
  text-align: center;
}
.portal-timeline-dot {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--timeline-dot, linear-gradient(135deg, var(--blue), var(--green)));
  box-shadow: 0 12px 26px rgba(0,142,219,.18);
  font-weight: 950;
}
.portal-timeline-body {
  min-width: 0;
  padding-top: 18px;
}
.portal-timeline-body time {
  display: block;
  margin-bottom: 8px;
  color: var(--timeline-text, var(--portal-card-text, #647f91));
  font-size: 13px;
  font-weight: 800;
}
.portal-timeline-body h3 {
  margin: 0 0 10px;
  color: var(--timeline-title, var(--portal-card-title, var(--ink)));
  font-size: 20px;
  line-height: 1.32;
  font-weight: 950;
}
.portal-timeline-body p {
  max-width: 220px;
  margin: 0 auto;
  color: var(--timeline-text, var(--portal-card-text, #3f596d));
  font-size: 14px;
  line-height: 1.75;
}
.portal-timeline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-top: 14px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--portal-card-accent, var(--blue-deep));
  background: rgba(238,248,255,.95);
  font-size: 13px;
  font-weight: 900;
}
.portal-timeline-item.is-highlight .portal-timeline-dot {
  background: var(--timeline-accent, linear-gradient(135deg, #0074c8, #00bfa6));
  box-shadow: 0 16px 34px rgba(0,142,219,.28);
}
.portal-card.is-card-bg-hidden,
.portal-card.card-chrome-transparent {
  background: transparent !important;
}
.portal-card.is-card-border-hidden,
.portal-card.card-chrome-transparent,
.portal-card.card-chrome-plain {
  border-color: transparent !important;
}
.portal-card.is-card-shadow-hidden,
.portal-card.card-chrome-transparent,
.portal-card.card-chrome-plain {
  box-shadow: none !important;
}
.portal-timeline-card.timeline-bg-hidden { background: transparent !important; }
.portal-timeline-card.timeline-border-hidden { border-color: transparent !important; }
.portal-timeline-card.timeline-shadow-hidden { box-shadow: none !important; }
.portal-timeline-card.timeline-line-hidden .portal-timeline-list::before { display: none !important; }
.portal-timeline-card.timeline-variant-card .portal-timeline-list {
  align-items: stretch;
}
.portal-timeline-card.timeline-variant-card .portal-timeline-list::before,
.portal-timeline-card.timeline-variant-compact .portal-timeline-list::before {
  display: none;
}
.portal-timeline-card.timeline-variant-card .portal-timeline-item {
  padding: 18px;
  border: 1px solid rgba(10,142,219,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
}
.portal-timeline-card.timeline-variant-vertical .portal-timeline-list,
.portal-timeline-card.timeline-variant-compact .portal-timeline-list {
  grid-template-columns: 1fr;
}
.portal-timeline-card.timeline-variant-vertical .portal-timeline-list::before {
  left: 25px;
  right: auto;
  top: 0;
  bottom: 0;
  width: 2px;
  height: auto;
}
.portal-timeline-card.timeline-variant-vertical .portal-timeline-item,
.portal-timeline-card.timeline-variant-compact .portal-timeline-item {
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 18px;
  justify-items: stretch;
  text-align: left;
}
.portal-timeline-card.timeline-variant-vertical .portal-timeline-body,
.portal-timeline-card.timeline-variant-compact .portal-timeline-body {
  padding-top: 0;
}
.portal-timeline-card.timeline-variant-vertical .portal-timeline-body p,
.portal-timeline-card.timeline-variant-compact .portal-timeline-body p {
  max-width: none;
  margin: 0;
}
.custom-module-section { padding: 76px 0; background: linear-gradient(180deg, rgba(247,251,255,.82), rgba(255,255,255,.76)); }
.custom-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.custom-card { position: relative; min-width: 0; padding: var(--portal-card-padding, 24px); border: 1px solid var(--portal-card-border, rgba(10,142,219,.12)); border-radius: var(--portal-card-radius, 18px); background: var(--portal-card-bg, rgba(255,255,255,.9)); box-shadow: var(--portal-card-shadow, var(--shadow-soft)); }
.custom-card-image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; margin-bottom: 16px; border-radius: 12px; background: #eef9ff; }
.custom-card-icon { width: 52px; height: 52px; margin-bottom: 14px; display: grid; place-items: center; border-radius: 16px; color: var(--green); background: #eef8ff; font-weight: 900; }
.custom-card h3 { margin: 0 0 10px; color: var(--portal-card-title, var(--ink)); font-size: 20px; line-height: 1.35; }
.custom-card p { margin: 0; color: var(--portal-card-text, var(--text)); font-size: 14px; line-height: 1.75; }
.custom-card-text { color: var(--portal-card-text, var(--text)); font-size: 14px; line-height: 1.75; }
.custom-card-text p { margin: 0 0 .7em; }
.custom-card-text p:last-child { margin-bottom: 0; }
.custom-card-text a { color: var(--blue-deep); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.custom-card-text img { max-width: 100%; border-radius: 12px; }
.portal-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--portal-card-text, #527086);
  font-size: 13px;
  line-height: 1.5;
}
.portal-detail-meta strong,
.portal-detail-meta em {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-style: normal;
  color: var(--portal-card-accent, var(--blue-deep));
  background: rgba(238,248,255,.94);
  font-weight: 900;
}
.portal-detail-meta span {
  min-width: 0;
  max-width: min(100%, 520px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}
.custom-card-action { display: inline-flex; align-items: center; justify-content: center; min-height: 34px; margin-top: 16px; padding: 0 14px; border-radius: 8px; color: #fff; background: linear-gradient(135deg, var(--portal-card-accent, var(--blue-deep)), var(--blue)); font-size: 14px; font-weight: 900; }
.portal-card.is-full-width, .custom-card.is-full-width, .custom-html-card, .portal-carousel-card, .portal-button-entry, .portal-pdf-card.is-full-width, .portal-pdf-button.is-full-width { grid-column: 1 / -1; }
.portal-card.is-half-width { grid-column: span 2; }
.custom-card.card-variant-imageLeft { display: grid; grid-template-columns: minmax(180px, 34%) minmax(0, 1fr); gap: 20px; align-items: center; }
.custom-card.card-variant-imageLeft .custom-card-image { margin: 0; height: 100%; min-height: 180px; }
.custom-card.card-variant-imageCover { position: relative; min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; background: linear-gradient(180deg, rgba(0,55,95,.08), rgba(0,68,112,.78)); overflow: hidden; }
.custom-card.card-variant-imageCover .custom-card-image { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; margin: 0; border-radius: 0; opacity: .74; }
.custom-card.card-variant-imageCover .custom-card-icon,
.custom-card.card-variant-imageCover h3,
.custom-card.card-variant-imageCover p,
.custom-card.card-variant-imageCover .portal-detail-meta,
.custom-card.card-variant-imageCover .custom-card-action { position: relative; z-index: 1; }
.custom-card.card-variant-imageCover h3, .custom-card.card-variant-imageCover p { color: #fff; }
.custom-card.card-variant-fullBleed { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(240px, 42%) minmax(0, 1fr); gap: 26px; align-items: center; }
.portal-button-entry {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  background: transparent;
}
.portal-button-entry.button-align-center { justify-content: center; }
.portal-button-entry.button-align-right { justify-content: flex-end; }
.portal-button-group-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: var(--portal-card-padding, 24px);
  border: 1px solid var(--portal-card-border, rgba(10,142,219,.12));
  border-radius: var(--portal-card-radius, 18px);
  background: var(--portal-card-bg, rgba(255,255,255,.9));
  box-shadow: var(--portal-card-shadow, var(--shadow-soft));
}
.portal-button-group-card.button-align-center {
  text-align: center;
}
.portal-button-group-card.button-align-right {
  text-align: right;
}
.portal-button-group-card h3 {
  margin: 0;
  color: var(--portal-card-title, var(--ink));
  font-size: 20px;
  line-height: 1.35;
  font-weight: 950;
}
.portal-button-group {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--button-gap, 12px);
}
.button-align-center .portal-button-group {
  justify-content: center;
}
.button-align-right .portal-button-group {
  justify-content: flex-end;
}
.portal-button-group.button-layout-wrap {
  flex-wrap: wrap;
}
.portal-button-group.button-layout-column {
  flex-direction: column;
  align-items: stretch;
}
.portal-button-group.button-layout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, max-content));
  justify-content: start;
}
.button-align-center .portal-button-group.button-layout-grid {
  justify-content: center;
}
.button-align-right .portal-button-group.button-layout-grid {
  justify-content: end;
}
.portal-standalone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--button-border, transparent);
  border-radius: var(--portal-card-radius, 10px);
  color: var(--button-color, #fff);
  background: var(--button-bg, linear-gradient(135deg, var(--portal-card-accent, var(--blue-deep)), var(--blue)));
  font-size: 15px;
  font-weight: 950;
  box-shadow: var(--portal-card-shadow, 0 14px 28px rgba(0, 94, 168, .18));
}
.portal-standalone-button.button-variant-outline {
  color: var(--button-color, var(--blue-deep));
  background: transparent;
  border-color: var(--button-border, rgba(10,142,219,.32));
  box-shadow: none;
}
.portal-standalone-button.button-variant-ghost {
  color: var(--button-color, var(--blue-deep));
  background: var(--button-bg, rgba(238,248,255,.92));
  border-color: var(--button-border, rgba(10,142,219,.10));
  box-shadow: none;
}
.portal-standalone-button.button-variant-text {
  min-height: auto;
  padding: 0;
  color: var(--button-color, var(--blue-deep));
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
}
.portal-pdf-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: var(--portal-card-padding, 24px);
  border: 1px solid var(--portal-card-border, rgba(10,142,219,.12));
  border-radius: var(--portal-card-radius, 18px);
  background: var(--portal-card-bg, rgba(255,255,255,.9));
  box-shadow: var(--portal-card-shadow, var(--shadow-soft));
}
.portal-pdf-card h3 {
  margin: 0 0 8px;
  color: var(--portal-card-title, var(--ink));
  font-size: 22px;
  line-height: 1.35;
  font-weight: 950;
}
.portal-pdf-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.portal-pdf-open {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(238,248,255,.94);
  font-size: 13px;
  font-weight: 900;
}
.portal-pdf-frame {
  display: block;
  width: 100%;
  height: var(--pdf-desktop-height, 680px);
  border: 0;
  border-radius: calc(var(--portal-card-radius, 18px) - 4px);
  background: #f3fbff;
  box-shadow: inset 0 0 0 1px rgba(10,142,219,.10);
}
.portal-pdf-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}
.portal-pdf-missing {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(238,248,255,.9);
  font-size: 13px;
  font-weight: 800;
}
.custom-html-card { padding: 0; border: 0; background: transparent; }
.custom-html-card.html-layout-card { padding: var(--portal-card-padding, 24px); border: 1px solid var(--portal-card-border, rgba(10,142,219,.12)); border-radius: var(--portal-card-radius, 18px); background: var(--portal-card-bg, rgba(255,255,255,.9)); box-shadow: var(--portal-card-shadow, var(--shadow-soft)); }
.custom-html-card.html-layout-contained { max-width: 920px; margin: 0 auto; }
.portal-carousel-card { min-width: 0; padding: var(--portal-card-padding, 20px); border: 1px solid var(--portal-card-border, rgba(10,142,219,.12)); border-radius: var(--portal-card-radius, 18px); background: var(--portal-card-bg, rgba(255,255,255,.9)); box-shadow: var(--portal-card-shadow, var(--shadow-soft)); }
.carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; }
.carousel-slide { position: relative; min-height: 240px; display: flex; align-items: flex-end; overflow: hidden; border-radius: 14px; background: linear-gradient(135deg, rgba(8,127,194,.14), rgba(34,185,154,.14)); scroll-snap-align: start; color: #fff; }
.carousel-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.carousel-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 28%, rgba(0,39,70,.74)); }
.carousel-caption { position: relative; z-index: 1; display: grid; gap: 6px; padding: 18px; }
.carousel-caption strong { font-size: 20px; }
.carousel-caption em { font-style: normal; opacity: .86; line-height: 1.6; }
.carousel-linked-nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; margin-top: 14px; }
.carousel-linked-nav span { padding: 12px; border-radius: 12px; background: rgba(235,248,255,.88); color: var(--ink); font-weight: 800; }
.carousel-linked-nav b { margin-right: 8px; color: var(--blue); }
.portal-notice-config-card { padding: var(--portal-card-padding, 22px); border-radius: var(--portal-card-radius, 16px); border: 1px solid var(--portal-card-border, rgba(10,142,219,.12)); background: var(--portal-card-bg, rgba(255,255,255,.9)); box-shadow: var(--portal-card-shadow, var(--shadow-soft)); }
.portal-notice-config-card.notice-variant-featured { grid-column: 1 / -1; padding: 30px; background: linear-gradient(135deg, rgba(0,94,168,.95), rgba(0,175,199,.86)); color: #fff; }
.portal-notice-config-card.notice-variant-featured h3, .portal-notice-config-card.notice-variant-featured p, .portal-notice-config-card.notice-variant-featured .custom-card-text { color: #fff; }
.notice-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.notice-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: var(--blue-deep);
  background: rgba(238,248,255,.92);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}
.home-notice-modal-actions { margin-top: 20px; }
.article-section { position: relative; z-index: 3; padding: 72px 0 92px; background: linear-gradient(115deg, rgba(255,255,255,.97), rgba(242,251,255,.9)); }
.article-shell { width: min(980px, calc(100% - 56px)); margin: 0 auto; }
.article-header { margin: 0 0 28px; }
.article-header h1 { margin: 10px 0 12px; color: var(--ink); font-size: clamp(32px, 4vw, 52px); line-height: 1.14; font-weight: 950; }
.article-header p { margin: 0; color: var(--text); font-size: 16px; line-height: 1.8; }
.article-body { color: #264b64; font-size: 17px; line-height: 1.95; }
.article-body h1, .article-body h2, .article-body h3 { margin: 1.1em 0 .45em; color: var(--ink); line-height: 1.28; }
.article-body p { margin: 0 0 1em; }
.article-body a { color: var(--blue-deep); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.article-body img { display: block; max-width: 100%; margin: 22px auto; border-radius: 16px; box-shadow: var(--shadow-soft); }
.article-body ul { margin: 0 0 1em 1.2em; padding: 0; }
.article-card-grid { margin-top: 34px; }
.article-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.article-actions-top { margin-bottom: 26px; }
.article-actions-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(10,142,219,.12); }
.article-action { min-height: 38px; display: inline-flex; align-items: center; justify-content: center; padding: 0 16px; border-radius: 999px; border: 1px solid rgba(10,142,219,.16); color: var(--blue-deep); background: rgba(255,255,255,.88); font-size: 14px; font-weight: 900; cursor: pointer; }
.article-action-primary, .article-action-link { color: #fff; border-color: transparent; background: linear-gradient(135deg, var(--blue-deep), var(--blue)); box-shadow: 0 14px 28px rgba(0,94,168,.16); }
.portal-action-modal { position: fixed; inset: 0; z-index: 150; display: none; align-items: center; justify-content: center; padding: 28px; }
.portal-action-modal.is-open { display: flex; }
.portal-action-backdrop { position: absolute; inset: 0; background: rgba(8,46,80,.44); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.portal-action-dialog { position: relative; z-index: 1; width: min(880px, calc(100vw - 36px)); max-height: calc(100vh - 56px); display: grid; grid-template-rows: auto minmax(0, 1fr); overflow: hidden; border-radius: 24px; background: #fff; box-shadow: 0 28px 76px rgba(5,86,148,.24); }
.portal-action-close { position: absolute; right: 16px; top: 14px; z-index: 2; width: 36px; height: 36px; border: 0; border-radius: 50%; color: var(--blue-deep); background: rgba(238,248,255,.94); font-size: 24px; line-height: 1; cursor: pointer; }
.portal-action-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 58px 18px 26px; border-bottom: 1px solid rgba(10,142,219,.12); }
.portal-action-head h3 { margin: 0; color: var(--ink); font-size: 20px; line-height: 1.35; }
.portal-action-head a { color: var(--blue-deep); font-size: 13px; font-weight: 900; white-space: nowrap; }
.portal-action-body { min-height: 220px; overflow: auto; padding: 26px; }
.portal-action-frame { display: block; width: 100%; height: min(68vh, 620px); border: 0; border-radius: 16px; background: #f3fbff; }
.footer { flex-shrink: 0; padding: 34px 0; background: linear-gradient(135deg, #005ea8, #087fc2); color: rgba(255,255,255,.92); }
.footer-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; display: flex; align-items: center; justify-content: flex-start; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 900; }
.footer-brand img { width: 42px; height: 42px; object-fit: contain; }
.footer-text { text-align: left; line-height: 1.8; font-size: 13px; opacity: .92; }
.footer-text a { color: rgba(255,255,255,.94); text-decoration: none; }
.footer-text a:hover { text-decoration: underline; }
.footer-text span { opacity: .82; }
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 70;
  min-width: 108px;
  height: 44px;
  padding: 0 16px 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue) 62%, var(--green));
  box-shadow: 0 18px 38px rgba(0, 94, 168, .22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 12px, 0);
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}
.back-to-top:hover { box-shadow: 0 22px 46px rgba(0, 94, 168, .28); transform: translate3d(0, -2px, 0); }
.back-to-top-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  background: rgba(255,255,255,.92);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.auth-modal.is-open { display: flex; }
.is-hidden { display: none !important; }
.auth-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 35%, rgba(10,142,219,.12), transparent 28%),
    radial-gradient(circle at 72% 20%, rgba(0,191,166,.12), transparent 26%),
    rgba(238, 250, 255, .66);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.auth-card {
  position: relative;
  z-index: 1;
  width: min(550px, calc(100vw - 36px));
  padding: 30px 30px 30px;
  border-radius: 30px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.84)),
    rgba(255,255,255,.9);
  border: 1px solid rgba(10,142,219,.15);
  box-shadow: 0 26px 72px rgba(5, 86, 148, .18), inset 0 1px 0 rgba(255,255,255,.8);
  animation: authCardIn .16s cubic-bezier(.18,.9,.28,1) both;
}

.home-notice-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.home-notice-modal.is-open { display: flex; }
.home-notice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 46, 80, .42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.home-notice-dialog {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100vw - 36px));
  max-height: calc(100vh - 56px);
  overflow: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 76px rgba(5,86,148,.24);
}
.home-notice-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--blue-deep);
  background: rgba(255,255,255,.9);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(5,86,148,.12);
}
.home-notice-modal-cover { position: relative; aspect-ratio: 16 / 7; background: #eef9ff; overflow: hidden; }
.home-notice-modal-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-notice-modal-cover.is-placeholder img { display: none; }
.home-notice-modal-placeholder { display: none; width: 100%; height: 100%; place-items: center; align-content: center; gap: 8px; color: var(--blue-deep); background: linear-gradient(135deg, #eaf8ff, #f7fcff 54%, #e8fbf7); }
.home-notice-modal-cover.is-placeholder .home-notice-modal-placeholder { display: grid; }
.home-notice-modal-placeholder strong { font-size: 14px; letter-spacing: .22em; }
.home-notice-modal-placeholder span { font-size: 28px; font-weight: 900; }
.home-notice-dialog-body { padding: 28px 32px 32px; }
.home-notice-modal-date { color: var(--muted); font-size: 13px; font-weight: 800; margin-bottom: 10px; }
.home-notice-dialog h3 { margin: 0 0 18px; color: var(--ink); font-size: 26px; line-height: 1.35; }
.home-notice-modal-content { color: #36546b; font-size: 16px; line-height: 1.9; white-space: normal; }
.home-notice-attachments { display: grid; gap: 10px; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(10,142,219,.12); }
.home-notice-attachments:empty { display: none; }
.home-notice-attachments-title { color: var(--ink); font-weight: 900; }
.home-notice-attachment { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 14px; border-radius: 12px; color: var(--blue-deep); background: #f1f9ff; font-weight: 800; }
.home-notice-attachment span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-notice-attachment em { flex: 0 0 auto; font-style: normal; color: var(--green); }
.auth-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--blue-deep);
  background: rgba(238,248,255,.92);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.form-kicker {
  margin: 0 0 6px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}
.auth-title { margin: 0; color: var(--ink); font-size: 28px; line-height: 1.2; font-weight: 900; }
.auth-form { display: grid; gap: 16px; }
.auth-field { display: grid; gap: 7px; color: var(--text); font-size: 13px; font-weight: 700; }
.auth-field span { padding-left: 2px; }
.auth-field input {
  width: 100%;
  height: 46px;
  padding: 0 15px;
  border: 0;
  border-radius: 18px;
  outline: none;
  color: var(--ink);
  background: rgba(255,255,255,.82);
  box-shadow: 0 0 0 1px rgba(10,142,219,.15);
}
.auth-field input:focus { box-shadow: 0 0 0 2px rgba(10,142,219,.22); }
.auth-captcha-row { display: grid; grid-template-columns: 1fr 132px; gap: 10px; align-items: end; }
.auth-code {
  width: 132px;
  height: 46px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(10,142,219,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  cursor: pointer;
}
.auth-code img { display: none; width: 100%; height: 100%; object-fit: cover; }
.auth-code.has-image img { display: block; }
.auth-code.has-image span { display: none; }
.auth-code span { color: var(--blue-deep); font-size: 13px; font-weight: 700; }
.auth-options { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.remember-check { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-deep); font-size: 13px; font-weight: 700; }
.register-link { color: var(--blue-deep); font-weight: 800; }
.auth-error { min-height: 18px; color: #d94b3d; font-size: 13px; line-height: 1.4; }
.auth-submit {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue) 62%, var(--green));
  box-shadow: 0 18px 36px rgba(0,94,168,.24);
  cursor: pointer;
}
.auth-submit:disabled { opacity: .68; cursor: wait; }

@keyframes authCardIn {
  from { opacity: 0; transform: translateY(8px) scale(.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes floatEmblem { 0%, 100% { transform: translateY(0) rotateY(-7deg); } 50% { transform: translateY(-14px) rotateY(7deg); } }
@keyframes orbitPulse { 0%, 100% { opacity: .6; transform: rotate(-14deg) scale(1); } 50% { opacity: .95; transform: rotate(-8deg) scale(1.03); } }
@keyframes sloganIn { from { opacity: 0; transform: translateY(16px) skewX(-7deg); } to { opacity: 1; transform: translateY(0) skewX(-7deg); } }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

body.auth-open .hero-particles { opacity: .28; }
body.auth-open .emblem-logo,
body.auth-open .orbit,
body.auth-open .reveal {
  animation-play-state: paused !important;
}

@media (max-width: 1100px) {
  .header-shell { gap: 18px; }
  .brand-name { font-size: 19px; }
  .nav { display: none; }
  .hero-shell { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-emblem { min-height: 360px; }
  .home-notice-preview-list { --stage-count: 3; grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 34px; }
  .portal-timeline-list { --timeline-count: 3; grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 34px; }
  .portal-timeline-list::before { display: none; }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 32px; }
  .timeline::before { display: none; }
  .showcase-layout { grid-template-columns: 1fr; }
  .guide-card { grid-template-columns: 210px minmax(0, 1fr); gap: 18px 26px; }
  .guide-action { grid-column: 2; justify-self: start; }
}
@media (max-width: 720px) {
  :root { --header-h: 72px; }
  .header-shell { width: min(100% - 28px, 640px); }
  .brand { min-width: 0; gap: 8px; flex: 1 1 auto; }
  .brand-name { font-size: 15px; max-width: 128px; white-space: normal; line-height: 1.25; }
  .brand-logo { width: 46px; height: 46px; }
  .header-actions { gap: 6px; }
  .header-actions a { padding: 8px 10px; font-size: 13px; white-space: nowrap; }
  .header-actions .user-state { max-width: 155px; }
  .hero-art { min-height: auto; }
  .hero-shell { width: min(100% - 32px, 640px); padding: 58px 0 64px; }
  .slogan { font-size: clamp(44px, 14vw, 72px); letter-spacing: .04em; }
  .hero-subtitle { letter-spacing: .14em; font-size: 20px; }
  .hero-emblem { min-height: 300px; }
  .home-notice-preview { padding: 42px 0 58px; }
  .home-notice-preview-shell { width: min(100% - 32px, 640px); }
  .home-notice-preview-title { margin-bottom: 34px; }
  .home-notice-preview-title h2 { font-size: 32px; }
  .home-notice-preview-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 34px;
  }
  .home-notice-preview-list::before {
    left: 24px;
    right: auto;
    top: 0;
    bottom: 14px;
    width: 2px;
    height: auto;
  }
  .home-stage-item {
    min-height: 104px;
    padding: 0 0 28px 22px;
    text-align: left;
  }
  .home-stage-dot {
    position: absolute;
    left: -34px;
    top: 0;
    width: 48px;
    height: 48px;
    margin: 0;
  }
  .home-stage-desc {
    max-width: none;
    margin: 0;
  }
  .guide-grid, .category-grid, .timeline { grid-template-columns: 1fr; }
  .custom-card-grid, .home-middle-grid, .stage-extra-grid { grid-template-columns: 1fr; }
  .portal-card.is-half-width { grid-column: auto; }
  .custom-card.card-variant-imageLeft,
  .custom-card.card-variant-fullBleed { grid-template-columns: 1fr; }
  .portal-button-group {
    gap: var(--button-mobile-gap, 10px);
  }
  .portal-button-group.button-mobile-column {
    flex-direction: column;
    align-items: stretch;
  }
  .portal-button-group.button-mobile-column .portal-standalone-button {
    width: 100%;
  }
  .portal-button-group.button-mobile-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .portal-button-group.button-layout-grid {
    grid-template-columns: 1fr;
  }
  .portal-pdf-head {
    flex-direction: column;
  }
  .portal-pdf-frame {
    height: var(--pdf-mobile-height, 460px);
  }
  .article-section { padding: 46px 0 64px; }
  .article-shell { width: min(100% - 32px, 640px); }
  .article-actions { align-items: stretch; }
  .article-action { flex: 1 1 auto; }
  .portal-action-modal { padding: 16px; }
  .portal-action-head { padding: 18px 52px 14px 18px; }
  .portal-action-body { padding: 18px; }
  .portal-action-frame { height: 66vh; }
  .carousel-track { grid-auto-columns: minmax(82%, 1fr); }
  .guide-section .section-shell { width: min(100% - 32px, 640px); }
  .guide-grid { padding: 12px 14px; }
  .guide-card { grid-template-columns: 1fr; gap: 12px; padding: 18px 0; }
  .guide-name { justify-content: flex-start; min-height: 52px; text-align: left; }
  .guide-action { grid-column: auto; justify-self: start; }
  .section-title-row, .footer-shell { flex-direction: column; align-items: flex-start; }
  .portal-module-header,
  .page-header-align-split {
    display: block;
    text-align: left;
  }
  .portal-module-header-extra {
    display: block;
  }
  .portal-module-header .section-intro {
    margin-top: 12px;
  }
  .portal-module-header .portal-module-more {
    display: inline-flex;
    margin-top: 14px;
  }
  .footer-text { text-align: left; }
  .notice-list { grid-template-columns: 1fr; }
  .notice-item-strip,
  .portal-notice-config-card.notice-config-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }
  .notice-strip-main em {
    white-space: normal;
  }
  .notice-strip-meta {
    justify-content: flex-start;
  }
  .portal-spacer {
    height: var(--spacer-mobile-height, 32px);
  }
  .portal-timeline-card {
    padding: 24px 18px;
  }
  .portal-timeline-head {
    margin-bottom: 24px;
  }
  .portal-timeline-head h2 {
    font-size: 30px;
  }
  .portal-timeline-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 34px;
  }
  .portal-timeline-list::before {
    display: block;
    left: 24px;
    right: auto;
    top: 0;
    bottom: 14px;
    width: 2px;
    height: auto;
  }
  .portal-timeline-item,
  .portal-timeline-card.timeline-variant-vertical .portal-timeline-item,
  .portal-timeline-card.timeline-variant-compact .portal-timeline-item {
    min-height: 104px;
    padding: 0 0 28px 22px;
    display: block;
    text-align: left;
  }
  .portal-timeline-dot {
    position: absolute;
    left: -34px;
    top: 0;
    width: 48px;
    height: 48px;
  }
  .portal-timeline-body {
    padding-top: 0;
  }
  .portal-timeline-body p,
  .portal-timeline-card.timeline-variant-vertical .portal-timeline-body p,
  .portal-timeline-card.timeline-variant-compact .portal-timeline-body p {
    max-width: none;
    margin: 0;
  }
  .notice-card-body { padding: 16px; }
  .notice-title { min-height: auto; font-size: 17px; }
  .back-to-top { right: 16px; bottom: 16px; min-width: 46px; width: 46px; height: 46px; padding: 0; }
  .back-to-top span:last-child { display: none; }
  .auth-modal { padding: 16px; align-items: flex-start; overflow-y: auto; }
  .auth-card { margin-top: 22px; padding: 28px 18px 22px; border-radius: 24px; }
  .auth-captcha-row { grid-template-columns: 1fr; }
  .auth-code { width: 100%; }
  .home-notice-modal { padding: 16px; align-items: flex-start; overflow-y: auto; }
  .home-notice-dialog { max-height: none; }
  .home-notice-modal-cover { aspect-ratio: 16 / 10; }
  .home-notice-dialog-body { padding: 22px 18px 24px; }
  .home-notice-dialog h3 { font-size: 22px; }
  .home-notice-attachment { align-items: flex-start; flex-direction: column; }
}

.home-notice{width:100%;padding:40px 0}
.home-notice-title{text-align:center;font-size:26px;font-weight:900;margin-bottom:26px}
.home-notice-grid{width:min(1220px,92%);margin:0 auto;display:grid;grid-template-columns:420px 1fr;gap:24px}
.notice-carousel{height:180px;background:rgba(255,255,255,.7);backdrop-filter:blur(16px);border-radius:18px}
.notice-ticker{height:180px;overflow:hidden;background:rgba(255,255,255,.6);border-radius:18px}
.ticker-track{position:absolute;animation:scrollUp 12s linear infinite}
@keyframes scrollUp{0%{transform:translateY(0)}100%{transform:translateY(-50%)}}
.notice-modal{position:fixed;inset:0;display:none;background:rgba(0,0,0,.45);justify-content:center;align-items:center}
.modal-content{background:#fff;padding:20px;border-radius:12px;width:480px}
