:root {
  --bg: #031d18;
  --bg-deep: #02110f;
  --bg-panel: rgba(8, 48, 42, 0.72);
  --bg-panel-strong: rgba(6, 38, 34, 0.92);
  --border: rgba(111, 236, 211, 0.22);
  --border-strong: rgba(111, 236, 211, 0.5);
  --text: #f1fff9;
  --muted: #a9c9bf;
  --cyan: #5cf2d6;
  --cyan-soft: #8fe8ff;
  --grass: #24d08b;
  --gold: #d7b56d;
  --gold-soft: #ffe3a3;
  --shadow: rgba(0, 0, 0, 0.32);
  --max-width: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--bg);
  background-image:
    linear-gradient(135deg, rgba(3, 29, 24, 0.98) 0%, rgba(5, 57, 49, 0.96) 48%, rgba(2, 17, 15, 0.98) 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    repeating-linear-gradient(0deg, rgba(111, 236, 211, 0.06) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(111, 236, 211, 0.06) 0 1px, transparent 1px 44px),
    linear-gradient(115deg, transparent 0 16%, rgba(92, 242, 214, 0.07) 16.2% 16.8%, transparent 17% 52%, rgba(215, 181, 109, 0.06) 52.2% 52.8%, transparent 53%);
  opacity: 0.95;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(3, 29, 24, 0.92), transparent 22%, transparent 78%, rgba(2, 17, 15, 0.94)),
    linear-gradient(180deg, rgba(2, 17, 15, 0.14), rgba(2, 17, 15, 0.7));
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(111, 236, 211, 0.14);
  background: rgba(3, 29, 24, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(92, 242, 214, 0.18), rgba(215, 181, 109, 0.08)),
    rgba(6, 45, 39, 0.82);
  box-shadow: 0 0 24px rgba(92, 242, 214, 0.22);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  background: var(--cyan);
}

.brand-mark::before {
  width: 22px;
  height: 2px;
}

.brand-mark::after {
  width: 2px;
  height: 22px;
}

.brand-mark span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(215, 181, 109, 0.72);
}

.brand-text {
  display: grid;
  min-width: 0;
}

.brand-text strong {
  overflow: hidden;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-text small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
}

.site-nav a {
  position: relative;
  color: #d9fff5;
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  background: rgba(8, 48, 42, 0.7);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--cyan);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, calc(100svh - 24px));
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 72px) 42px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(118deg, rgba(92, 242, 214, 0.12) 0 1px, transparent 1px 22%),
    linear-gradient(64deg, transparent 0 60%, rgba(215, 181, 109, 0.1) 60% 60.7%, transparent 61%),
    linear-gradient(180deg, rgba(3, 29, 24, 0.18), rgba(2, 17, 15, 0.62));
}

.hero::after {
  position: absolute;
  right: clamp(12px, 6vw, 90px);
  bottom: 90px;
  z-index: -1;
  width: min(48vw, 580px);
  height: min(42vw, 500px);
  border: 1px solid rgba(92, 242, 214, 0.18);
  content: "";
  background:
    repeating-linear-gradient(135deg, rgba(92, 242, 214, 0.13) 0 1px, transparent 1px 20px),
    linear-gradient(135deg, rgba(4, 71, 58, 0.18), rgba(2, 17, 15, 0.04));
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.hero-content {
  width: min(860px, 100%);
  align-self: center;
}

.eyebrow,
.section-heading span,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-heading span::before,
.panel-label::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  content: "";
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: #f6fff9;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 span {
  display: inline;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 34px;
  color: #c8e8dd;
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  border: 1px solid rgba(92, 242, 214, 0.74);
  color: #03221d;
  background: linear-gradient(135deg, var(--cyan), #8fffd6);
  box-shadow: 0 18px 44px rgba(92, 242, 214, 0.18);
}

.button.secondary {
  border: 1px solid rgba(215, 181, 109, 0.58);
  color: var(--gold-soft);
  background: rgba(8, 48, 42, 0.58);
}

.hero-signal {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(980px, 100%);
  margin-top: auto;
  border: 1px solid var(--border);
  background: var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.hero-signal div {
  min-width: 0;
  min-height: 112px;
  padding: 22px;
  background: rgba(4, 38, 33, 0.78);
}

.hero-signal strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.hero-signal span {
  color: #c5e8dd;
  font-size: 14px;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-heading {
  width: min(var(--max-width), 100%);
  margin: 0 auto 34px;
}

.section-lead {
  width: min(var(--max-width), 100%);
  margin: -12px auto 28px;
  color: #c6e5dc;
  font-size: 17px;
  line-height: 1.9;
}

.section-heading h2,
.contact-panel h2 {
  margin-bottom: 0;
  color: #f5fff9;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

.intro-section,
.embedded-section {
  background: rgba(3, 27, 24, 0.46);
  border-top: 1px solid rgba(111, 236, 211, 0.08);
  border-bottom: 1px solid rgba(111, 236, 211, 0.08);
}

.intro-layout,
.embedded-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 5vw, 68px);
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  align-items: start;
}

.intro-copy p,
.embedded-copy p,
.contact-panel p {
  color: #c6e5dc;
  font-size: 17px;
  line-height: 1.9;
}

.intro-copy p:last-child,
.embedded-copy p:last-child,
.contact-panel p:last-child {
  margin-bottom: 0;
}

.capability-grid {
  display: grid;
  gap: 14px;
}

.capability-grid article,
.service-card,
.contact-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.capability-grid article {
  position: relative;
  min-height: 142px;
  padding: 22px;
  overflow: hidden;
}

.capability-grid span {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(92, 242, 214, 0.18);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.capability-grid h3,
.service-card h3,
.award-info h3 {
  margin-bottom: 10px;
  color: #f5fff9;
  font-size: 20px;
  line-height: 1.35;
}

.capability-grid p,
.service-card p,
.award-info p,
.contact-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.service-card {
  min-height: 278px;
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.service-card:hover {
  border-color: var(--border-strong);
  background: rgba(8, 58, 50, 0.84);
  transform: translateY(-4px);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 34px;
  margin-bottom: 32px;
  padding: 0 12px;
  border: 1px solid rgba(92, 242, 214, 0.28);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.training-program-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 42px);
  width: min(var(--max-width), 100%);
  margin: 18px auto 0;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(111, 236, 211, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 242, 214, 0.08), rgba(215, 181, 109, 0.05)),
    rgba(6, 38, 34, 0.74);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.training-program-panel h3 {
  margin-bottom: 12px;
  color: #f5fff9;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.training-program-panel h4 {
  margin-bottom: 6px;
  color: #f5fff9;
  font-size: 17px;
}

.training-program-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.training-flow article {
  position: relative;
  min-height: 132px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(111, 236, 211, 0.16);
  border-radius: 8px;
  background: rgba(3, 29, 24, 0.52);
}

.training-flow span {
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(92, 242, 214, 0.18);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.training-tags {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 10px;
}

.training-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(92, 242, 214, 0.24);
  border-radius: 999px;
  color: #dffdf4;
  font-size: 13px;
  background: rgba(2, 17, 15, 0.34);
}

.tech-list {
  display: grid;
  gap: 12px;
}

.tech-list span {
  position: relative;
  min-height: 50px;
  padding: 13px 18px 13px 42px;
  border: 1px solid rgba(111, 236, 211, 0.2);
  border-radius: 8px;
  color: #dffdf4;
  background: rgba(6, 38, 34, 0.7);
}

.tech-list span::before {
  position: absolute;
  top: 21px;
  left: 18px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--cyan);
  content: "";
  background: transparent;
  box-shadow: 0 0 16px rgba(92, 242, 214, 0.4);
  transform: rotate(45deg);
}

.awards-section {
  position: relative;
  overflow: hidden;
}

.awards-section::before {
  position: absolute;
  top: 0;
  right: clamp(18px, 5vw, 72px);
  left: clamp(18px, 5vw, 72px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(215, 181, 109, 0.62), transparent);
}

.awards-shell {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(111, 236, 211, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 242, 214, 0.08), rgba(215, 181, 109, 0.06)),
    rgba(3, 29, 24, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.awards-stack-view {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: 620px;
}

.award-deck-panel {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.award-deck-panel::before {
  position: absolute;
  inset: 8% 0 8% 12%;
  content: "";
  background:
    repeating-linear-gradient(135deg, rgba(92, 242, 214, 0.12) 0 1px, transparent 1px 18px),
    rgba(4, 58, 49, 0.2);
  clip-path: polygon(8% 0, 100% 0, 84% 100%, 0 100%);
}

.award-deck {
  position: relative;
  width: min(430px, 100%);
  height: 560px;
  outline: none;
}

.award-deck:focus-visible {
  outline: 2px solid rgba(92, 242, 214, 0.8);
  outline-offset: 12px;
}

.deck-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: min(340px, 86%);
  aspect-ratio: 3 / 4;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(111, 236, 211, 0.24);
  border-radius: 8px;
  background: rgba(2, 17, 15, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 0.36s ease, opacity 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.deck-card img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.deck-card span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 227, 163, 0.44);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  background: rgba(2, 17, 15, 0.82);
}

.deck-card.is-active {
  border-color: rgba(255, 227, 163, 0.8);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.42), 0 0 34px rgba(215, 181, 109, 0.18);
}

.award-detail-panel {
  min-height: 430px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(111, 236, 211, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 242, 214, 0.08), rgba(215, 181, 109, 0.06)),
    rgba(6, 38, 34, 0.86);
}

.award-kicker {
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 800;
  line-height: 1;
}

.award-detail-panel h3 {
  margin-bottom: 14px;
  color: #f7fff9;
  font-size: clamp(24px, 3.3vw, 38px);
  line-height: 1.28;
}

.award-detail-lines {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.award-detail-lines p {
  margin: 0;
  color: #c8e8dd;
  font-size: 16px;
  line-height: 1.75;
}

.award-panel-footer {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(111, 236, 211, 0.16);
}

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

.award-dots {
  --award-progress: 16.666%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  height: 30px;
  align-items: center;
}

.award-dots::before,
.award-dots::after {
  position: absolute;
  left: 0;
  height: 6px;
  border-radius: 999px;
  content: "";
}

.award-dots::before {
  right: 0;
  background: rgba(111, 236, 211, 0.16);
  box-shadow: inset 0 0 0 1px rgba(111, 236, 211, 0.1);
}

.award-dots::after {
  width: var(--award-progress);
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  box-shadow: 0 0 18px rgba(92, 242, 214, 0.22);
  transition: width 0.24s ease;
}

.award-dots button {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.award-dots button::before {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 2px;
  height: 12px;
  border-radius: 999px;
  content: "";
  background: rgba(111, 236, 211, 0.34);
  transform: translate(-50%, -50%);
}

.award-dots button.is-active::before {
  width: 16px;
  height: 16px;
  border: 3px solid rgba(2, 17, 15, 0.92);
  background: var(--gold-soft);
  box-shadow: 0 0 0 1px rgba(255, 227, 163, 0.76), 0 0 18px rgba(215, 181, 109, 0.36);
}

.awards-expanded-view {
  display: none;
}

.awards-shell.is-expanded .awards-stack-view {
  display: none;
}

.awards-shell.is-expanded {
  overscroll-behavior: contain;
}

.awards-shell.is-expanded .awards-expanded-view {
  display: block;
}

.awards-shell.is-expanded .expanded-head {
  margin-bottom: 30px;
}

.expanded-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.expanded-head span {
  color: var(--gold-soft);
  font-size: 20px;
  font-weight: 800;
}

.awards-collapse {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(92, 242, 214, 0.4);
  border-radius: 8px;
  color: #dffdf4;
  font-weight: 800;
  background: rgba(8, 48, 42, 0.72);
  cursor: pointer;
}

.awards-expanded-view {
  overflow: hidden;
}

.timeline {
  --timeline-offset: 0px;
  position: relative;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 34px 4px 18px;
  width: max-content;
  overflow: visible;
  list-style: none;
  transform: translateX(var(--timeline-offset));
  transition: transform 0.08s linear;
  will-change: transform;
}

.timeline::before {
  position: absolute;
  top: 42px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--cyan));
}

.timeline-item {
  position: relative;
  flex: 0 0 min(360px, 82vw);
  padding-top: 28px;
}

.timeline-item::before {
  position: absolute;
  top: 0;
  left: 22px;
  z-index: 1;
  width: 17px;
  height: 17px;
  border: 3px solid rgba(3, 29, 24, 0.98);
  border-radius: 50%;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(215, 181, 109, 0.8), 0 0 28px rgba(215, 181, 109, 0.38);
}

.award-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-content: start;
  min-height: 100%;
  margin-left: 0;
  padding: 20px;
  border: 1px solid rgba(215, 181, 109, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(215, 181, 109, 0.08), transparent 46%),
    rgba(6, 38, 34, 0.82);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
}

.award-date {
  color: var(--gold-soft);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.award-image-button {
  display: block;
  width: min(220px, 100%);
  aspect-ratio: 3 / 4;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 227, 163, 0.36);
  border-radius: 8px;
  background: rgba(2, 17, 15, 0.78);
  cursor: zoom-in;
}

.award-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.award-image-button:hover img,
.award-image-button:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
}

.award-level {
  color: var(--gold-soft) !important;
  font-weight: 800;
}

.award-info {
  min-width: 0;
}

.award-info p + p {
  margin-top: 6px;
}

.contact-section {
  padding-top: 48px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 56px);
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 44px);
  background:
    linear-gradient(135deg, rgba(92, 242, 214, 0.1), rgba(215, 181, 109, 0.08)),
    var(--bg-panel-strong);
}

.contact-list {
  display: grid;
  gap: 12px;
  align-content: center;
}

.contact-list p {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  min-height: 44px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(111, 236, 211, 0.14);
}

.contact-list span {
  color: var(--cyan);
  font-weight: 800;
}

.site-footer {
  padding: 28px 20px 40px;
  border-top: 1px solid rgba(111, 236, 211, 0.12);
  color: var(--muted);
  text-align: center;
  background: rgba(2, 17, 15, 0.44);
}

.site-footer p {
  margin: 0;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  padding: clamp(16px, 4vw, 36px);
  place-items: center;
  background: rgba(2, 17, 15, 0.86);
  backdrop-filter: blur(14px);
}

.image-modal[hidden] {
  display: none;
}

.modal-dialog {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: min(920px, 100%);
  max-height: 92svh;
  overflow: hidden;
  border: 1px solid rgba(111, 236, 211, 0.28);
  border-radius: 8px;
  background: rgba(4, 35, 31, 0.98);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  background: rgba(2, 17, 15, 0.72);
  cursor: pointer;
}

.modal-image {
  width: 100%;
  max-height: calc(92svh - 118px);
  object-fit: contain;
  background: rgba(2, 17, 15, 0.8);
}

.modal-caption {
  padding: 18px 22px;
  border-top: 1px solid rgba(111, 236, 211, 0.16);
}

.modal-caption h2 {
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 1.35;
}

.modal-caption p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 1020px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-layout,
  .embedded-layout,
  .awards-stack-view,
  .training-program-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .awards-stack-view {
    min-height: auto;
  }

  .award-deck-panel {
    min-height: 520px;
  }

  .award-detail-panel {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    padding: 12px 18px;
  }

  .brand-mark {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    max-width: 190px;
    font-size: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(3, 29, 24, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(92, 242, 214, 0.1);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

  h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(32px, 9vw, 38px);
  }

  h1 span {
    display: block;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-signal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 54px;
  }

  .awards-shell {
    padding: 16px;
  }

  .award-deck {
    height: 500px;
  }

  .award-panel-footer,
  .expanded-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline::before {
    top: 42px;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }

  .timeline-item::before {
    top: 0;
    left: 18px;
  }

  .award-card {
    grid-template-columns: 1fr;
    margin-left: 0;
    gap: 16px;
  }

  .award-date {
    grid-column: auto;
    font-size: 18px;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 58px 18px;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .hero-signal {
    grid-template-columns: 1fr;
  }

  .hero-signal div {
    min-height: 96px;
  }

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

  .service-card {
    min-height: auto;
  }

  .training-flow {
    grid-template-columns: 1fr;
  }

  .award-deck-panel {
    min-height: 430px;
  }

  .award-deck {
    height: 420px;
  }

  .deck-card {
    width: min(280px, 78%);
  }

  .award-detail-panel {
    padding: 20px;
  }

  .award-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 16px;
  }

  .award-image-button {
    max-width: 260px;
  }

  .contact-list p {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
