:root {
  --ink: #1f2329;
  --ink-soft: #303642;
  --muted: #68717f;
  --line: #e4e8ef;
  --paper: #fbfcfe;
  --white: #ffffff;
  --accent: #2f66f2;
  --accent-deep: #1f4fd6;
  --cyan: #12b8c8;
  --purple: #7b3ff2;
  --silver: #a9b0bb;
  --mist: #f0f3f8;
  --shadow: 0 24px 70px rgba(31, 35, 41, 0.1);
  --soft-shadow: 0 16px 44px rgba(31, 35, 41, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 42%, #ffffff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

html[lang="en"],
html[lang="en"] body,
html[lang="en"] body *,
html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] p,
html[lang="en"] a,
html[lang="en"] li,
html[lang="en"] label,
html[lang="en"] button,
html[lang="en"] input,
html[lang="en"] select,
html[lang="en"] textarea {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif !important;
}

html[lang="zh-Hant"] body,
html[lang="zh-Hant"] body *,
html[lang="zh-Hant"] button,
html[lang="zh-Hant"] input,
html[lang="zh-Hant"] select,
html[lang="zh-Hant"] textarea,
html[lang="zh-HK"] body,
html[lang="zh-HK"] body *,
html[lang="zh-HK"] button,
html[lang="zh-HK"] input,
html[lang="zh-HK"] select,
html[lang="zh-HK"] textarea {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Microsoft JhengHei", "Noto Sans TC", sans-serif !important;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
  padding: 16px clamp(22px, 5vw, 82px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(228, 232, 239, 0.78);
  backdrop-filter: blur(22px) saturate(1.08);
}

.brand,
.header-actions,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 282px;
}

.brand-logo {
  width: 250px;
  height: auto;
}

.nav {
  gap: clamp(9px, 1.3vw, 18px);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  color: var(--accent);
  border-color: var(--purple);
}

.header-actions {
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  background: #eef3fb;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 36px;
  padding: 0 12px;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.site-header .language-switch a.active,
.site-header .language-switch a[aria-current="page"],
.language-switch a.active,
.language-switch a[aria-current="page"] {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--accent), var(--purple)) !important;
  box-shadow: 0 8px 20px rgba(45, 99, 232, 0.22);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border: 1px solid rgba(45, 99, 232, 0.12);
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(45, 99, 232, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(45, 99, 232, 0.22);
}

.button:hover {
  background: linear-gradient(135deg, var(--accent-deep), var(--purple));
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.button.small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1d2027;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(29, 32, 39, 0), rgba(29, 32, 39, 0.78));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #121720;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: heroGallery 28s ease-in-out infinite;
  will-change: opacity, transform;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 13, 20, 0.88) 0%, rgba(18, 23, 34, 0.68) 42%, rgba(18, 23, 34, 0.3) 74%, rgba(18, 23, 34, 0.16) 100%),
    linear-gradient(180deg, rgba(9, 12, 18, 0.08), rgba(9, 12, 18, 0.45));
}

.slide-1 {
  background-image: url("https://images.unsplash.com/photo-1536599018102-9f803c140fc1?auto=format&fit=crop&w=1800&q=86");
}

.slide-2 {
  background-image: url("https://images.unsplash.com/photo-1506970845246-18f21d533b20?auto=format&fit=crop&w=1800&q=86");
  animation-delay: 7s;
}

.slide-3 {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/f/fa/Hong_Kong_skyline_night_lights.jpg");
  animation-delay: 14s;
}

.slide-4 {
  background-image: url("https://images.unsplash.com/photo-1518599807935-37015b9cefcb?auto=format&fit=crop&w=1800&q=86");
  animation-delay: 21s;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.1) 42%, transparent 68%),
    radial-gradient(circle at 72% 28%, rgba(18, 184, 200, 0.18), transparent 34%);
  mix-blend-mode: screen;
  opacity: 0.46;
  transform: translateX(-18%);
  animation: heroLightSweep 16s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 40px));
  margin: 0 0 clamp(86px, 14vh, 150px) clamp(20px, 6vw, 92px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: #bfc8d8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(46px, 7.2vw, 92px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: min(1180px, 92vw);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.8vw, 22px);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

@keyframes heroGallery {
  0% {
    opacity: 1;
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  7% {
    opacity: 1;
  }

  25% {
    opacity: 1;
    transform: scale(1.1) translate3d(-1.2%, -0.8%, 0);
  }

  32% {
    opacity: 0;
    transform: scale(1.12) translate3d(1%, -0.4%, 0);
  }

  100% {
    opacity: 0;
    transform: scale(1.04) translate3d(0, 0, 0);
  }
}

@keyframes heroLightSweep {
  from {
    opacity: 0.28;
    transform: translateX(-20%);
  }

  to {
    opacity: 0.56;
    transform: translateX(16%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .hero-slide,
  .hero-media::after {
    animation: none;
  }

  .hero-slide {
    opacity: 0;
  }

  .slide-1 {
    opacity: 1;
  }
}

@media (min-width: 1180px) {
  .hero-copy {
    white-space: nowrap;
  }
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1160px;
  margin: -64px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.metrics article {
  padding: 32px 34px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.metrics article:first-child {
  border-radius: 8px 0 0 8px;
}

.metrics article:last-child {
  border-radius: 0 8px 8px 0;
}

.metrics strong {
  display: block;
  color: var(--accent);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}

.metrics span {
  color: var(--muted);
  font-size: 15px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(86px, 9vw, 132px) 22px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

h2 {
  margin: 0 0 24px;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
}

.section p {
  color: var(--muted);
  font-size: 16px;
}

.image-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card div {
  padding: 22px 24px;
}

.image-card strong,
.image-card span {
  display: block;
}

.image-card span {
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 860px;
  margin: 0 0 28px;
}

.philosophy-heading {
  max-width: none;
}

.philosophy-heading h2 {
  max-width: none;
  font-size: clamp(34px, 3.1vw, 52px);
  line-height: 1.08;
}

@media (min-width: 760px) {
  .philosophy-heading h2 {
    white-space: nowrap;
  }
}

.section-heading.wide {
  max-width: none;
}

@media (min-width: 1080px) {
  .section-heading.wide > p:not(.eyebrow) {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.55;
  }
}

.company-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  background: var(--white);
}

.intro-copy {
  max-width: 760px;
}

.intro-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.intro-panel article {
  min-height: 142px;
  padding: 24px;
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.intro-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.intro-panel span {
  color: var(--muted);
  font-weight: 800;
}

.gateway-visual {
  margin: 0;
  padding: 0;
  border-radius: 18px;
}

.gateway-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(228, 232, 239, 0.72);
  border-radius: 16px;
}

.gateway-visual figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.gateway-visual-portrait {
  max-width: 390px;
  justify-self: center;
  background: #06111f;
}

.gateway-visual-portrait img {
  max-height: 590px;
  object-fit: contain;
}

.quick-answers {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
  background: var(--white);
}

.company-profile {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
  background: #f7f9fc;
  border-top: 1px solid var(--line);
}

.profile-card-grid,
.profile-stat-grid,
.profile-summary-grid {
  display: grid;
  gap: 18px;
}

.profile-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-card-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.profile-card-grid article:nth-child(2) {
  border-left-color: var(--cyan);
}

.profile-card-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 22px;
}

.profile-card-grid p {
  margin: 0;
}

.profile-summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-summary-grid article {
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.profile-summary-grid article:nth-child(2) {
  border-left-color: var(--cyan);
}

.profile-summary-grid article:nth-child(3) {
  border-left-color: var(--purple);
}

.profile-summary-grid article:nth-child(4) {
  border-left-color: var(--cyan);
}

.profile-summary-grid strong,
.profile-summary-grid span {
  display: block;
}

.profile-summary-grid strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
}

.profile-summary-grid span {
  color: var(--muted);
  line-height: 1.8;
}

.philosophy {
  background: var(--white);
}

.philosophy-layout {
  display: block;
}

.philosophy-visual {
  overflow: hidden;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
}

.philosophy-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.philosophy-visual-vertical {
  background: #071122;
  max-width: none;
  justify-self: start;
}

.philosophy-visual-vertical img {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  object-fit: contain;
}

.philosophy-body {
  padding: 0;
  background: transparent;
  border: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
}

.philosophy-body-with-visual {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: stretch;
}

.philosophy-body-with-visual .philosophy-visual {
  box-shadow: none;
}

.philosophy-body-with-visual .philosophy-visual-vertical {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.philosophy-copy {
  min-width: 0;
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand-blue);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.philosophy-body p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.78;
}

.philosophy-body p:last-child {
  margin-bottom: 0;
}

.philosophy-body blockquote {
  margin: 22px 0;
  padding: 16px 20px;
  color: var(--ink);
  background: var(--white);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.7;
}

.philosophy-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.profile-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.profile-stat-grid article {
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #4389ff);
  border-radius: 10px;
}

.profile-stat-grid article:nth-child(2) {
  background: linear-gradient(135deg, var(--purple), #8c63f6);
}

.profile-stat-grid article:nth-child(3) {
  background: linear-gradient(135deg, var(--cyan), #0f9fac);
}

.profile-stat-grid strong,
.profile-stat-grid span {
  display: block;
}

.profile-stat-grid strong {
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.profile-stat-grid span {
  font-weight: 900;
}

.pricing-hero {
  background:
    linear-gradient(90deg, rgba(10, 18, 32, 0.92), rgba(32, 77, 176, 0.72)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=82") center/cover;
}

.pricing-section {
  background: #f7f9fc;
  border-top: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pricing-card {
  position: relative;
  min-height: 320px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.pricing-card.starter {
  border-top-color: var(--cyan);
}

.pricing-card.featured {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  border-color: rgba(255, 255, 255, 0.18);
}

.pricing-card em {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  border-radius: 999px;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.pricing-card h3 {
  max-width: 78%;
  margin-bottom: 10px;
  font-size: clamp(22px, 2.2vw, 28px);
}

.pricing-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.pricing-card.starter strong {
  color: var(--cyan);
}

.pricing-card.featured strong,
.pricing-card.featured h3,
.pricing-card.featured li,
.pricing-card.featured p {
  color: #fff;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  color: var(--ink-soft);
  font-weight: 800;
}

.pricing-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--cyan);
  font-weight: 950;
}

.pricing-card.featured li::before {
  color: #fff;
}

.pricing-card p {
  margin: 0;
  padding: 12px 14px;
  color: var(--ink-soft);
  background: #f6f8fc;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.pricing-card.featured p {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.pricing-compare {
  background: var(--white);
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.pricing-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  background: var(--white);
}

.pricing-table th,
.pricing-table td {
  padding: 16px;
  border: 1px solid var(--line);
  text-align: center;
  font-weight: 800;
}

.pricing-table th {
  color: var(--ink);
  background: #eef4ff;
}

.pricing-table td:first-child,
.pricing-table th:first-child {
  text-align: left;
}

.pricing-table td {
  color: var(--ink-soft);
}

.pricing-note {
  margin: 22px 0 0;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 800;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(36px, 6vw, 72px) clamp(22px, 5vw, 82px);
  padding: clamp(30px, 4vw, 48px);
  background: linear-gradient(135deg, #eef5ff, #f4f0ff);
  border: 1px solid #bfd5ff;
  border-radius: 14px;
}

.pricing-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 40px);
}

.pricing-cta p {
  margin: 0;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.answer-grid article {
  min-height: 210px;
  padding: 24px;
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.answer-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-deep);
  font-size: 15px;
  font-weight: 900;
}

.answer-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.macro-insight {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
  background: #f7f9fc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.macro-copy {
  max-width: 560px;
}

.macro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.macro-grid article {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.macro-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 900;
}

.macro-grid h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.solutions,
.scenarios,
.partners {
  background: #f7f9fc;
  border-top: 1px solid var(--line);
}

.solution-grid,
.scenario-grid,
.credential-grid {
  display: grid;
  gap: 18px;
}

.solution-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scenario-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.credential-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.solution-grid article,
.scenario-grid article,
.credential-grid article {
  min-height: 214px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.scenario-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 300px;
  overflow: hidden;
}

.scenario-grid article img {
  display: block;
  width: 100%;
  height: 136px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 4px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fbff, #edf5ff);
}

.solution-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-grid h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.solution-path {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.solution-path + .solution-path {
  margin-top: 18px;
}

.solution-path strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.solution-path p {
  margin: 0;
}

.scenario-grid strong,
.credential-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 19px;
}

.scenario-grid span,
.credential-grid span {
  color: var(--ink-soft);
}

.home-team {
  background: var(--white);
}

.home-team .text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--accent-deep);
  font-weight: 900;
}

.home-team .team-grid span {
  white-space: nowrap;
}

.home-team .team-grid article p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.home-team-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.team-network-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0 0 6px;
  border-bottom: 2px solid rgba(49, 100, 246, 0.35);
  color: var(--accent-deep);
  font-weight: 900;
  box-shadow: none;
}

.dual-track {
  padding-top: clamp(76px, 8vw, 116px);
  padding-bottom: clamp(48px, 7vw, 96px);
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.track-grid article {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: clamp(30px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.track-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--purple));
}

.track-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 11px;
  color: var(--accent-deep);
  background: #edf3ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.track-grid h3 {
  font-size: clamp(26px, 3vw, 34px);
}

.track-grid ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.track-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-weight: 600;
}

.track-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.advantages {
  max-width: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 102, 246, 0.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(19, 184, 196, 0.1), transparent 30%),
    linear-gradient(180deg, #f7faff 0%, var(--surface) 100%);
  color: var(--ink);
}

.advantages .section-heading,
.advantages .advantage-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.advantages .section-heading {
  margin-bottom: 28px;
}

.advantages .section-heading h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.advantages h2,
.advantages p {
  color: var(--ink);
}

.advantage-grid,
.service-grid,
.team-grid {
  display: grid;
  gap: 22px;
}

.advantage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advantage-grid article {
  min-height: 188px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-soft);
  box-shadow: var(--soft-shadow);
}

.advantage-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 22px;
}

.advantage-grid span {
  display: block;
  font-size: 16px;
  line-height: 1.75;
}

.resource-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  grid-template-areas:
    "government academic enterprise"
    "international core capital"
    "talent note note";
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px;
  background:
    radial-gradient(circle at center, rgba(19, 184, 196, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(47, 102, 246, 0.08), rgba(151, 74, 242, 0.06)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

.resource-map::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(47, 102, 246, 0.26);
  border-radius: 999px;
  pointer-events: none;
}

.resource-node,
.resource-core,
.resource-note {
  position: relative;
  z-index: 1;
}

.resource-node {
  min-height: 138px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(209, 217, 229, 0.9);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(29, 44, 72, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.resource-node strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  margin-bottom: 8px;
}

.resource-node span {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.resource-core {
  grid-area: core;
  min-height: 168px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple) 54%, var(--brand-teal));
  box-shadow: 0 22px 55px rgba(47, 102, 246, 0.24);
}

.resource-core strong {
  display: block;
  font-size: 25px;
}

.resource-core span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.9;
}

.resource-note {
  grid-area: note;
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 24px 28px;
  border-left: 5px solid var(--brand-teal);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.resource-node.government { grid-area: government; }
.resource-node.academic { grid-area: academic; }
.resource-node.enterprise { grid-area: enterprise; }
.resource-node.international { grid-area: international; }
.resource-node.capital { grid-area: capital; }
.resource-node.talent { grid-area: talent; }

.resource-ppt-visual {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal) 45%, var(--brand-purple));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(29, 44, 72, 0.14);
  overflow: hidden;
}

.resource-ppt-visual::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 15px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  pointer-events: none;
}

.resource-ppt-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: var(--white);
}

.resource-ecosystem {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 360px) minmax(260px, 1fr);
  grid-template-areas:
    "government flower academic"
    "international flower enterprise"
    "talent flower capital"
    "govdepth govdepth acaddepth";
  gap: 18px 38px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 36px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.resource-copy {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.resource-copy-left {
  text-align: right;
}

.resource-copy-right {
  text-align: left;
}

.resource-copy strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.resource-copy span {
  display: block;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.resource-copy-left.top { grid-area: government; }
.resource-copy-right.top { grid-area: academic; }
.resource-copy-left.middle { grid-area: international; }
.resource-copy-right.middle { grid-area: enterprise; }
.resource-copy-left.bottom { grid-area: talent; }
.resource-copy-right.bottom { grid-area: capital; }

.resource-flower {
  grid-area: flower;
  position: relative;
  width: min(100%, 318px);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.resource-clover {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 14px 26px rgba(47, 102, 246, 0.1));
}

.clover-petal {
  fill: #cfe9ff;
  stroke: #b2d4ef;
  stroke-width: 2;
}

.clover-center {
  fill: var(--white);
  stroke: #c5d5e6;
  stroke-width: 2;
}

.resource-clover text {
  fill: #5b6b7c;
  font-size: 24px;
  font-weight: 800;
  text-anchor: middle;
  dominant-baseline: middle;
}

.resource-depth {
  grid-area: govdepth;
  overflow: hidden;
  border: 1px solid #b7c7e4;
  background: #dce5f5;
}

.resource-depth.academic-depth {
  grid-area: acaddepth;
}

.resource-depth strong {
  display: block;
  padding: 9px 16px;
  background: #4478c6;
  color: var(--white);
  font-size: 19px;
  line-height: 1.2;
  text-align: center;
}

.resource-depth span {
  display: block;
  min-height: 72px;
  padding: 13px 18px 15px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.resource-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 0 0;
}

.resource-showcase::before {
  content: "";
  position: absolute;
  inset: -120px -70px auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(47, 102, 246, 0.1), transparent 58%),
    linear-gradient(135deg, rgba(47, 102, 246, 0.08), rgba(19, 184, 196, 0.04));
  opacity: 0.8;
  pointer-events: none;
}

.resource-card,
.resource-feature {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dce7f5;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(29, 44, 72, 0.08);
}

.resource-card {
  grid-column: span 2;
  min-height: 146px;
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 22px;
  padding: 26px 30px;
}

.resource-icon,
.feature-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-blue);
  background: linear-gradient(135deg, #f3f8ff, #e8f2ff);
  box-shadow: inset 0 0 0 1px rgba(47, 102, 246, 0.08);
  font-weight: 900;
}

.resource-icon {
  width: 76px;
  height: 76px;
  font-size: 28px;
}

.resource-icon.resource-photo {
  overflow: hidden;
  background: #eef5ff;
  border: 3px solid #ffffff;
  box-shadow:
    0 9px 24px rgba(29, 44, 72, 0.12),
    0 0 0 1px #d7e5f5;
}

.resource-icon.resource-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-card strong {
  display: block;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.resource-card span:not(.resource-icon) {
  display: block;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 650;
}

.resource-feature {
  grid-column: span 3;
  min-height: 160px;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-color: #bfd7f5;
  border-left: 5px solid var(--brand-blue);
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.feature-icon {
  width: 96px;
  height: 96px;
  background: var(--white);
  border: 1px solid #e3edf8;
  font-size: 28px;
  overflow: hidden;
}

.feature-icon img {
  display: block;
  max-width: 74%;
  max-height: 74%;
  object-fit: contain;
}

.feature-icon.photo-gov,
.feature-icon.photo-university {
  background: #eef5ff;
  border: 3px solid #ffffff;
  box-shadow:
    0 10px 28px rgba(29, 44, 72, 0.14),
    0 0 0 1px #d7e5f5;
}

.feature-icon.photo-gov img,
.feature-icon.photo-university img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.feature-icon.photo-gov img {
  object-position: center;
}

.feature-icon.photo-university img {
  object-position: center 56%;
}

.resource-feature strong {
  display: block;
  color: var(--brand-blue);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.resource-feature strong::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 9px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-teal));
}

.resource-feature span {
  display: block;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 650;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid article,
.team-grid article,
.team-note,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.service-grid article {
  position: relative;
  min-height: 320px;
  padding: 34px;
  overflow: hidden;
}

.service-grid article::before,
.team-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--purple));
}

.service-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
}

.service-grid p {
  margin-bottom: 0;
}

.service-grid small {
  display: inline-block;
  margin-top: 18px;
  padding: 7px 10px;
  color: var(--accent-deep);
  background: #edf3ff;
  border-radius: 4px;
}

.services-vertical {
  background:
    radial-gradient(circle at 88% 10%, rgba(47, 102, 246, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.service-system-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.service-list-panel {
  display: grid;
  gap: 16px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 0.64fr);
  gap: 22px;
  padding: 26px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand-blue);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.service-row:nth-child(2) {
  border-left-color: var(--brand-teal);
}

.service-row:nth-child(3) {
  border-left-color: var(--brand-purple);
}

.service-row:nth-child(4) {
  border-left-color: var(--brand-blue);
}

.service-row:nth-child(5) {
  border-left-color: var(--brand-teal);
}

.service-row:nth-child(6) {
  border-left-color: var(--brand-purple);
}

.service-category span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.service-row:nth-child(2) .service-category span {
  color: var(--brand-teal);
}

.service-row:nth-child(3) .service-category span {
  color: var(--brand-purple);
}

.service-row:nth-child(4) .service-category span {
  color: var(--brand-blue);
}

.service-row:nth-child(5) .service-category span {
  color: var(--brand-teal);
}

.service-row:nth-child(6) .service-category span {
  color: var(--brand-purple);
}

.service-category h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
}

.service-points {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 1.25em;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.65;
}

.service-points li::marker {
  color: var(--brand-blue);
}

.service-side-visual {
  position: sticky;
  top: 118px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.service-side-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef5ff;
}

.service-side-visual div {
  padding: 22px 24px 24px;
}

.service-side-visual strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.service-side-visual span {
  display: block;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

.funding-entry,
.home-link-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1200px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.home-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin-bottom: 72px;
  padding: clamp(34px, 5vw, 58px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.home-cta h2,
.home-cta p {
  color: var(--ink);
}

.home-cta h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 50px);
}

.home-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.funding-entry .section-heading,
.home-link-block .section-heading {
  margin-bottom: 0;
}

.subpage-hero {
  display: grid;
  align-items: end;
  min-height: 460px;
  padding: 120px max(22px, calc((100vw - 1200px) / 2)) 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 24, 32, 0.94), rgba(31, 35, 41, 0.72)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=86") center/cover;
}

.subpage-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.subpage-hero p:not(.eyebrow) {
  max-width: min(1240px, 92vw);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.65;
  text-wrap: pretty;
}

.grants {
  padding-top: 24px;
}

.grant-grid,
.check-grid,
.case-logo-grid,
.process-line {
  display: grid;
  gap: 22px;
}

.grant-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grant-selector-section {
  padding-bottom: 52px;
}

.grant-selector {
  max-width: 560px;
  margin-bottom: 28px;
}

.grant-selector label {
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.grant-select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
  font: inherit;
  font-weight: 700;
}

.grant-detail-list {
  display: grid;
}

.grant-detail {
  display: none;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.grant-detail.is-active {
  display: block;
}

.grant-detail-head {
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(16, 173, 191, 0.24), transparent 30%),
    linear-gradient(135deg, #151922, #232b3a 58%, #1e3f96);
}

.grant-detail-head span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.grant-detail-head h3 {
  font-size: clamp(30px, 4vw, 48px);
}

.grant-detail-head strong {
  display: block;
  margin-top: 14px;
  color: #dce5f5;
  font-size: clamp(17px, 2vw, 22px);
}

.grant-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.8fr) minmax(240px, 0.85fr);
  gap: clamp(22px, 3.5vw, 44px);
  padding: clamp(28px, 4vw, 44px);
}

.grant-detail-body h4 {
  margin: 0 0 14px;
  font-size: 22px;
}

.grant-detail-body ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.grant-detail-body a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--accent);
  font-weight: 900;
}

.official-check {
  align-self: stretch;
  padding: 22px;
  background: linear-gradient(135deg, rgba(47, 102, 242, 0.08), rgba(18, 184, 200, 0.07));
  border: 1px solid rgba(47, 102, 242, 0.16);
  border-radius: 12px;
}

[data-grant-panel="bud"] .grant-detail-body,
[data-grant-panel="cyberport-ccmf"] .grant-detail-body,
[data-grant-panel="cyberport-cip"] .grant-detail-body,
[data-grant-panel="hkstp-ideation"] .grant-detail-body,
[data-grant-panel="hkstp-incubation"] .grant-detail-body,
[data-grant-panel="ess"] .grant-detail-body,
[data-grant-panel="rth"] .grant-detail-body,
[data-grant-panel="tsssu"] .grant-detail-body {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.bud-full-detail,
.bud-check-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.bud-full-detail p,
.bud-check-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 650;
  line-height: 1.75;
}

.bud-full-detail ul {
  margin-top: 16px;
}

.bud-full-detail li {
  line-height: 1.8;
}

.bud-check-panel {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(47, 102, 246, 0.07), rgba(19, 184, 196, 0.06));
  border-color: rgba(47, 102, 246, 0.16);
}

.bud-check-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 22px;
}

.bud-check-table label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 58px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d9e5f4;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.55;
}

.bud-check-table input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand-blue);
}

.bud-check-submit {
  width: min(100%, 320px);
  border: 0;
}

.bud-check-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.42);
}

.bud-check-modal.is-open {
  display: grid;
}

.bud-check-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.26);
}

.bud-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.bud-check-dialog h4 {
  margin: 0 0 14px;
  font-size: 28px;
}

.bud-check-result p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.7;
}

.bud-check-result ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.official-check h4 {
  color: var(--accent-deep);
}

.official-check ul {
  margin-top: 14px;
}

.grant-grid article,
.process-line article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.grant-grid article {
  min-height: 248px;
  padding: 30px;
}

.grant-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 6px 10px;
  color: var(--accent-deep);
  background: #edf3ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.grant-grid p,
.process-line p {
  margin-bottom: 0;
}

.qualification {
  max-width: none;
  padding-left: max(22px, calc((100vw - 1200px) / 2));
  padding-right: max(22px, calc((100vw - 1200px) / 2));
  background: #f3f6fb;
}

.qualification-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.check-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-grid article {
  min-height: 214px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.check-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.cases {
  padding-top: 86px;
}

.case-logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 24px;
}

.case-logo-grid article {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(31, 35, 41, 0.05);
}

.case-logo-grid img {
  max-width: 82%;
  max-height: 66px;
  object-fit: contain;
}

.partner-logo-wall {
  margin: 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.partner-logo-wall img {
  display: block;
  width: 100%;
  height: auto;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(164px, 1fr));
  gap: 12px;
}

.partner-logo-grid article {
  display: grid;
  place-items: center;
  height: 86px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
  box-sizing: border-box;
}

.partner-logo-grid img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.partner-logo-grid .logo-emphasis img {
  max-height: 68px;
}

.partner-logo-grid .logo-larger img {
  max-height: 72px;
}

.partner-logo-grid .logo-xl img {
  max-width: 112%;
  max-height: 82px;
}

.partner-logo-grid .logo-mark-xl img {
  max-width: 82%;
  max-height: 76px;
}

.partner-logo-grid .logo-hero-wide img {
  max-width: 126%;
  max-height: 64px;
}

.partner-logo-grid .logo-hero-mark img {
  max-width: 98%;
  max-height: 64px;
}

.partner-logo-grid .partner-text-logo {
  gap: 2px;
  text-align: center;
}

.partner-logo-grid .partner-text-logo strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.partner-logo-grid .partner-text-logo span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.partner-logo-grid .partner-text-logo.compact strong {
  font-size: 18px;
}

.partner-logo-grid .partner-combo-logo {
  grid-auto-flow: column;
  justify-content: center;
  gap: 10px;
}

.partner-logo-grid .partner-combo-logo img {
  width: 32px;
  height: 32px;
}

.partner-logo-grid .partner-combo-logo strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.case-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.case-detail-grid article {
  min-height: 210px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.case-selector-section {
  padding-top: 72px;
}

.case-access-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.22fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 28px 0;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(47, 102, 242, 0.08), rgba(18, 184, 200, 0.06));
  border: 1px solid rgba(47, 102, 242, 0.16);
  border-radius: 12px;
}

.case-access-banner strong {
  color: var(--accent-deep);
  font-size: 18px;
}

.case-access-banner p {
  margin: 0;
  color: var(--ink-soft);
}

.case-access-banner .button {
  white-space: nowrap;
}

.program-case-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.program-case {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.program-case summary {
  display: grid;
  grid-template-columns: 180px minmax(0, 0.52fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  background: linear-gradient(135deg, rgba(47, 102, 242, 0.08), rgba(18, 184, 200, 0.06));
}

.program-case summary::-webkit-details-marker {
  display: none;
}

.program-case summary span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.program-case summary strong {
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 32px);
}

.program-case summary em {
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
}

.program-case-inner {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.program-brief {
  max-width: 960px;
}

.program-brief h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.program-brief p {
  margin: 0;
}

.program-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.program-case-grid article {
  padding: 24px;
  background: #f8fbff;
  border: 1px solid rgba(47, 102, 242, 0.13);
  border-radius: 12px;
}

.program-case-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: var(--accent-deep);
  background: rgba(47, 102, 242, 0.09);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.program-case-grid h4 {
  margin-bottom: 12px;
  font-size: 24px;
}

.program-case-grid p {
  margin: 0 0 16px;
}

.program-case-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.case-selector {
  max-width: 680px;
  margin: 28px 0;
}

.case-selector label {
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.case-select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
  font: inherit;
  font-weight: 700;
}

.case-detail-list {
  display: grid;
}

.case-detail {
  display: none;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.case-detail.is-active {
  display: block;
}

.case-detail-head {
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(121, 56, 232, 0.24), transparent 34%),
    linear-gradient(135deg, #151922, #223047 60%, #1e3f96);
}

.case-detail-head span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.case-detail-head h3 {
  font-size: clamp(30px, 4vw, 48px);
}

.case-detail-head strong {
  display: block;
  margin-top: 14px;
  color: #dce5f5;
  font-size: clamp(16px, 1.8vw, 20px);
}

.case-detail-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: clamp(28px, 4vw, 44px);
}

.case-detail-body h4 {
  margin: 0 0 14px;
  font-size: 21px;
}

.case-detail-body p {
  margin: 0;
}

.case-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(20, 24, 32, 0.95), rgba(31, 35, 41, 0.72)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=86") center/cover;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact-info h2,
.inquiry-form h2 {
  font-size: clamp(28px, 3.3vw, 42px);
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.inner-metrics {
  margin-top: -40px;
  margin-bottom: 70px;
}

.news-entry {
  padding-top: 40px;
  padding-bottom: 72px;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 253, 0.95)),
    linear-gradient(90deg, rgba(45, 99, 232, 0.08), rgba(121, 56, 232, 0.06));
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.news-card span,
.article-meta {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.news-card h3 {
  max-width: 720px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
}

.news-card p {
  max-width: 680px;
  margin: 20px 0 30px;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.news-tags span {
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(45, 99, 232, 0.18);
  border-radius: 999px;
  background: rgba(45, 99, 232, 0.06);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.news-event-image {
  overflow: hidden;
  min-height: 280px;
  height: 100%;
  margin: 0;
  border: 1px solid rgba(47, 102, 242, 0.18);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(31, 35, 41, 0.13);
}

.news-event-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.news-hero {
  background:
    linear-gradient(90deg, rgba(20, 24, 32, 0.95), rgba(31, 35, 41, 0.72)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=86") center/cover;
}

.event-index {
  padding-top: 72px;
}

.event-card-grid {
  display: grid;
  gap: 18px;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: stretch;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.event-card figure {
  min-height: 260px;
  margin: 0;
}

.event-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card > div {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 42px);
}

.event-card span {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.event-card h3 {
  max-width: 820px;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.18;
}

.event-card p {
  max-width: 720px;
  margin: 16px 0 22px;
}

.event-card strong {
  color: var(--accent-deep);
  font-weight: 900;
}

.event-card-muted {
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, rgba(47, 102, 242, 0.04), rgba(18, 184, 200, 0.04));
}

.event-card-muted h3 {
  font-size: clamp(22px, 2.4vw, 30px);
}

.event-pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.event-pagination a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink-soft);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
}

.event-pagination a.active {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.article-back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
  max-width: 1240px;
}

.article-layout.article-single {
  grid-template-columns: 1fr;
  max-width: 1040px;
}

.article-body {
  padding: clamp(34px, 5vw, 62px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.article-body h2 {
  max-width: 860px;
  font-size: clamp(34px, 4.2vw, 56px);
}

.article-body h3 {
  margin: 48px 0 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: clamp(25px, 3vw, 34px);
}

.article-body h4 {
  margin: 30px 0 12px;
  color: var(--ink);
  font-size: 21px;
}

.article-body p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 16px;
}

.article-lead {
  color: var(--ink) !important;
  font-size: clamp(18px, 2vw, 22px) !important;
  line-height: 1.75;
}

.article-photo {
  margin: 26px 0 28px;
}

.article-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(31, 35, 41, 0.1);
}

.article-photo-wide {
  margin-top: 34px;
  margin-bottom: 42px;
}

.article-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.article-sidebar {
  position: sticky;
  top: 112px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.article-sidebar div {
  padding: 24px;
}

.article-sidebar p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.sidebar-qr {
  display: grid;
  gap: 10px;
  place-items: center;
  margin-top: 24px;
  padding: 18px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.sidebar-qr img {
  width: 132px;
  border-radius: 6px;
}

.sidebar-qr span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.article-ending {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin-top: 54px;
  padding: clamp(26px, 4vw, 42px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(16, 173, 191, 0.25), transparent 32%),
    linear-gradient(135deg, #151922, #222b3b 60%, #1e3f96);
  border-radius: 14px;
}

.article-ending h3 {
  margin: 0 0 12px;
  padding: 0;
  color: var(--white);
  border: 0;
  font-size: clamp(25px, 3vw, 36px);
}

.article-ending p {
  color: rgba(255, 255, 255, 0.76);
}

.article-ending .eyebrow {
  color: #bfc8d8;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, 132px);
  gap: 16px;
}

.qr-grid figure {
  margin: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  text-align: center;
}

.qr-grid img {
  width: 108px;
  margin: 0 auto;
  border-radius: 5px;
}

.qr-grid figcaption {
  margin-top: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.process {
  max-width: none;
  padding-left: max(22px, calc((100vw - 1200px) / 2));
  padding-right: max(22px, calc((100vw - 1200px) / 2));
  background:
    linear-gradient(135deg, rgba(31, 35, 41, 0.98), rgba(45, 51, 63, 0.96)),
    linear-gradient(90deg, rgba(45, 99, 232, 0.16), rgba(121, 56, 232, 0.1));
  color: var(--white);
}

.process h2,
.process p {
  color: var(--white);
}

.process-line {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.process-line article {
  min-height: 196px;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.process-line span {
  display: block;
  margin-bottom: 28px;
  color: #bfc8d8;
  font-weight: 900;
}

.process-line strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}

.risk-note {
  max-width: 980px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 14px !important;
}

.team {
  padding-top: 20px;
}

.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-grid article {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.team-photo {
  width: 104px;
  height: 104px;
  margin-bottom: 22px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: var(--mist);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(31, 35, 41, 0.12);
}

.team-grid span {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 700;
}

.advisor-block {
  margin-top: 34px;
}

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.advisor-grid article {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(31, 35, 41, 0.06);
  padding: 26px;
}

.advisor-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--purple));
}

.advisor-grid div {
  min-height: 0;
  padding: 0;
}

.advisor-photo {
  width: 112px;
  height: 112px;
  margin-bottom: 22px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: var(--mist);
  border: 1px solid var(--line);
  filter: grayscale(8%) contrast(1.03);
  box-shadow: 0 14px 34px rgba(31, 35, 41, 0.12);
}

.advisor-avatar {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin-bottom: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border: 1px solid rgba(45, 99, 232, 0.12);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(31, 35, 41, 0.12);
}

.advisor-grid h3 {
  font-size: 21px;
}

.advisor-grid span {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 700;
}

.advisor-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.advisor-grid p strong {
  color: var(--ink);
}

.team-note {
  margin-top: 22px;
  padding: 34px;
  background: var(--mist);
}

.team-note p {
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  max-width: none;
  padding-left: max(22px, calc((100vw - 1200px) / 2));
  padding-right: max(22px, calc((100vw - 1200px) / 2));
  background:
    linear-gradient(90deg, rgba(20, 24, 32, 0.95), rgba(31, 35, 41, 0.84)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1600&q=82") center/cover;
  color: var(--white);
}

.contact h2,
.contact p {
  color: var(--white);
}

.contact-panel {
  padding: 36px;
  color: var(--ink);
}

.contact-panel a,
.contact-panel p {
  display: block;
  margin: 0 0 14px;
  color: var(--ink);
}

.contact-panel a {
  font-weight: 800;
}

.contact-qr-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-qr-section h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.contact-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-qr-grid figure {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: center;
  margin: 0;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.contact-qr-grid img {
  width: 100%;
  max-width: 118px;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
}

.contact-qr-grid figcaption {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 40px clamp(22px, 5vw, 82px);
  color: rgba(255, 255, 255, 0.72);
  background: #151922;
}

.site-footer strong {
  color: var(--white);
  font-size: 20px;
}

.site-footer p {
  margin: 4px 0 0;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .split,
  .contact,
  .news-card,
  .event-card,
  .article-layout,
  .article-ending,
  .macro-insight,
  .company-intro {
    grid-template-columns: 1fr;
  }

  .track-grid {
    grid-template-columns: 1fr;
  }

  .service-system-layout,
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-side-visual {
    position: static;
  }

  .resource-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "core core"
      "government academic"
      "enterprise capital"
      "talent international"
      "note note";
  }

  .resource-map::before {
    inset: 13%;
  }

  .resource-ecosystem {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "flower flower"
      "government academic"
      "international enterprise"
      "talent capital"
      "govdepth acaddepth";
    gap: 18px;
  }

  .resource-copy,
  .resource-copy-left,
  .resource-copy-right {
    text-align: left;
  }

  .resource-flower {
    max-width: 340px;
  }

  .resource-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-card,
  .resource-feature {
    grid-column: span 1;
  }

  .resource-card {
    grid-template-columns: 74px 1fr;
    padding: 24px;
  }

  .resource-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .resource-feature {
    grid-template-columns: 82px 1fr;
    padding: 24px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 24px;
  }

  .advantage-grid,
  .answer-grid,
  .profile-card-grid,
  .profile-stat-grid,
  .profile-summary-grid,
  .philosophy-layout,
  .pricing-grid,
  .solution-grid,
  .scenario-grid,
  .credential-grid,
  .service-grid,
  .advisor-grid,
  .grant-grid,
  .check-grid,
  .case-logo-grid,
  .case-detail-grid,
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qualification-panel {
    grid-template-columns: 1fr;
  }

  .case-access-banner {
    grid-template-columns: 1fr;
  }

  .program-case summary,
  .program-case-grid {
    grid-template-columns: 1fr;
  }

  .contact-page {
    grid-template-columns: 1fr;
  }

  .grant-detail-body {
    grid-template-columns: 1fr;
  }

  [data-grant-panel="bud"] .grant-detail-body,
  .bud-check-table {
    grid-template-columns: 1fr;
  }

  .case-detail-body {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .funding-entry,
  .home-link-block,
  .pricing-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-sidebar {
    position: static;
  }

  .qr-grid {
    grid-template-columns: repeat(2, minmax(116px, 132px));
  }

  .contact-qr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-qr-grid img {
    max-width: 142px;
  }

  .philosophy-body-with-visual {
    grid-template-columns: 1fr;
  }

  .philosophy-body-with-visual .philosophy-visual-vertical {
    width: min(440px, 100%);
    max-width: min(440px, 100%);
    height: auto;
    justify-self: center;
  }

  .philosophy-body-with-visual .philosophy-visual-vertical img {
    height: auto;
    max-height: 520px;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    gap: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(210px, 68vw);
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .nav {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 22px;
    padding-bottom: 2px;
    white-space: nowrap;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 72px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .metrics,
  .macro-grid,
  .answer-grid,
  .profile-card-grid,
  .profile-stat-grid,
  .profile-summary-grid,
  .pricing-grid,
  .intro-panel,
  .solution-grid,
  .scenario-grid,
  .credential-grid,
  .track-grid,
  .advantage-grid,
  .service-grid,
  .team-grid,
  .advisor-grid,
  .grant-grid,
  .check-grid,
  .case-logo-grid,
  .case-detail-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .resource-map {
    grid-template-columns: 1fr;
    grid-template-areas:
      "core"
      "government"
      "academic"
      "enterprise"
      "capital"
      "talent"
      "international"
      "note";
    padding: 18px;
  }

  .resource-map::before {
    display: none;
  }

  .resource-node {
    border-radius: 14px;
    min-height: 0;
  }

  .resource-core {
    border-radius: 18px;
    min-height: 128px;
  }

  .resource-ecosystem {
    grid-template-columns: 1fr;
    grid-template-areas:
      "flower"
      "government"
      "academic"
      "international"
      "enterprise"
      "talent"
      "capital"
      "govdepth"
      "acaddepth";
    padding: 22px 18px;
  }

  .resource-flower {
    width: min(280px, 84vw);
  }

  .resource-copy {
    min-height: 0;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
  }

  .resource-copy strong {
    font-size: 20px;
  }

  .resource-copy span {
    font-size: 15px;
  }

  .resource-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .resource-card,
  .resource-feature {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 22px;
  }

  .resource-depth strong {
    font-size: 18px;
  }

  .philosophy-visual img {
    min-height: 220px;
  }

  .metrics {
    margin-top: -36px;
  }

  .metrics article,
  .metrics article:first-child,
  .metrics article:last-child {
    border-radius: 10px;
  }

  .section {
    padding: 72px 16px;
  }

  .philosophy-body {
    padding: 26px 22px;
  }

  .philosophy-body blockquote {
    font-size: 18px;
  }

  .subpage-hero {
    min-height: 390px;
    padding: 86px 16px 56px;
  }

  .funding-entry {
    margin-left: 16px;
    margin-right: 16px;
    padding: 28px;
  }

  .service-grid article,
  .team-grid article,
  .grant-grid article,
  .process-line article {
    min-height: auto;
    padding: 28px;
  }

  .news-card,
  .article-body {
    padding: 26px;
  }

  .qr-grid {
    grid-template-columns: 1fr;
  }
}


/* English sync overrides */
html[lang="en"] body {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}
html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] .hero-title,
html[lang="en"] .page-title {
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: normal;
}
html[lang="en"] .nav a,
html[lang="en"] nav a {
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 800;
}
html[lang="en"] .hero h1,
html[lang="en"] .hero-title {
  font-size: clamp(48px, 6.5vw, 108px);
  line-height: 1;
}
html[lang="en"] .page-hero h1,
html[lang="en"] .page-title {
  font-size: clamp(42px, 5.3vw, 82px);
  line-height: 1.04;
}
html[lang="en"] .hero-subtitle,
html[lang="en"] .page-hero p,
html[lang="en"] .section-lead {
  max-width: 1320px;
}
