:root {
  --bg: #06152f;
  --bg-deep: #040d1d;
  --panel: rgba(8, 28, 58, 0.82);
  --panel-strong: rgba(10, 38, 76, 0.96);
  --line: rgba(83, 163, 255, 0.18);
  --line-strong: rgba(83, 163, 255, 0.34);
  --text: #ebf5ff;
  --muted: #99add0;
  --primary: #2f8cff;
  --primary-soft: rgba(47, 140, 255, 0.18);
  --accent: #4dd9ff;
  --success: #37d39d;
  --danger: #ff6d6d;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  --radius: 18px;
  --radius-sm: 12px;
  --container: min(1200px, calc(100% - 40px));
  --title-font: "Trebuchet MS", "Segoe UI", sans-serif;
  --body-font: "Microsoft YaHei", "PingFang SC", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(54, 122, 255, 0.22), transparent 28%),
    radial-gradient(circle at left 20%, rgba(0, 197, 255, 0.12), transparent 18%),
    linear-gradient(180deg, #071225 0%, #081a36 32%, #06142a 100%);
  min-height: 100vh;
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(80, 152, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 152, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 80%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 78px;
  backdrop-filter: blur(16px);
  background: rgba(4, 13, 29, 0.88);
  border-bottom: 1px solid rgba(80, 152, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  height: 78px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
  align-self: center;
  flex-shrink: 0;
  line-height: 0;
  padding: 4px 0;
}

.brand-logo {
  display: block;
  width: min(248px, 100%);
  max-height: 42px;
  height: auto;
  object-fit: contain;
}

.brand-badge {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.02) 28%),
    linear-gradient(135deg, rgba(36, 113, 255, 0.95), rgba(70, 219, 255, 0.35));
  box-shadow: 0 0 40px rgba(52, 137, 255, 0.34);
  position: relative;
  overflow: hidden;
}

.brand-badge::before,
.brand-badge::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 14px 22px 14px 24px;
  transform: skewX(-18deg);
}

.brand-badge::after {
  inset: 20px 12px 12px 20px;
  border-width: 3px;
  opacity: 0.65;
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  font-size: 18px;
  letter-spacing: 0.04em;
}

.brand-text span {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-height: 78px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav a {
  padding: 11px 16px;
  color: #d6e6ff;
  font-size: 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav a:hover,
.nav a.is-active {
  color: #fff;
  background: linear-gradient(180deg, rgba(47, 140, 255, 0.22), rgba(47, 140, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(111, 180, 255, 0.18);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  flex-shrink: 0;
}

.contact-mini {
  color: var(--muted);
  font-size: 14px;
}

.button,
.ghost-button,
.tiny-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.25s ease;
}

.button {
  min-height: 46px;
  padding: 0 24px;
  background: linear-gradient(135deg, #2081ff, #2ebdff);
  color: #fff;
  box-shadow: 0 12px 26px rgba(41, 129, 255, 0.32);
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.ghost-button {
  min-height: 44px;
  padding: 0 22px;
  background: transparent;
  color: #d8ebff;
  border: 1px solid rgba(102, 173, 255, 0.34);
}

.tiny-button {
  min-height: 36px;
  padding: 0 16px;
  background: rgba(47, 140, 255, 0.15);
  color: #deeeff;
  border: 1px solid rgba(111, 180, 255, 0.24);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 46px;
}

.hero-carousel {
  padding-top: 18px;
}

.hero-carousel > .container {
  width: 100%;
}

.hero-slider {
  position: relative;
  min-height: 620px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(92, 169, 255, 0.18);
  box-shadow: var(--shadow);
  background: rgba(7, 22, 45, 0.86);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 10, 21, 0.92) 0%, rgba(4, 14, 29, 0.82) 34%, rgba(5, 16, 33, 0.34) 60%, rgba(5, 16, 33, 0.16) 100%),
    linear-gradient(180deg, rgba(7, 18, 38, 0.12), rgba(7, 18, 38, 0.38));
}

.hero-slide-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 620px;
}

.hero-copy.hero-copy--banner {
  max-width: 600px;
  padding: 44px 0;
}

.hero-copy--banner h1 {
  max-width: 560px;
  font-size: 60px;
}

.hero-copy--banner p {
  max-width: 540px;
  font-size: 19px;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 12px;
}

.hero-slider-dot {
  width: 42px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: 0.25s ease;
}

.hero-slider-dot.is-active {
  background: #ffffff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
}

.hero-slider.hero-slider--pure {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.hero-slider.hero-slider--pure .hero-slide::after {
  background: linear-gradient(180deg, rgba(7, 18, 38, 0.04), rgba(7, 18, 38, 0.18));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.hero::before {
  width: 640px;
  height: 640px;
  right: -180px;
  top: -140px;
  background: radial-gradient(circle, rgba(59, 139, 255, 0.34), rgba(59, 139, 255, 0.01) 64%);
}

.hero::after {
  width: 420px;
  height: 420px;
  right: 12%;
  top: 24px;
  background: radial-gradient(circle, rgba(77, 217, 255, 0.18), rgba(77, 217, 255, 0.01) 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  color: #b4d7ff;
  background: rgba(47, 140, 255, 0.12);
  border: 1px solid rgba(111, 180, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.hero h1,
.page-title h1 {
  margin: 0 0 14px;
  font: 700 52px/1.08 var(--title-font);
  letter-spacing: 0.02em;
}

.hero p,
.page-title p,
.section-head p,
.card p,
.panel p,
.timeline-item p,
.news-meta,
.footer-note,
.list-muted {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 26px 0 34px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.point-card,
.feature-card,
.metric-card,
.mini-card,
.contact-card,
.info-card,
.process-step,
.facility-card,
.support-card,
.category-card,
.aside-card,
.product-card,
.application-card,
.admin-stat {
  background: linear-gradient(180deg, rgba(8, 29, 58, 0.88), rgba(8, 23, 48, 0.82));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.point-card,
.feature-card,
.metric-card,
.mini-card,
.contact-card,
.info-card,
.support-card,
.category-card,
.aside-card,
.product-card,
.application-card,
.admin-stat {
  padding: 22px;
}

.point-card strong,
.feature-card strong,
.metric-card strong,
.mini-card strong,
.contact-card strong,
.info-card strong,
.support-card strong,
.category-card strong,
.aside-card strong,
.product-card strong,
.application-card strong,
.admin-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.visual-stage {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.chip-core {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1 / 0.8;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(24, 69, 150, 0.86), rgba(2, 23, 58, 0.95)),
    radial-gradient(circle at center, rgba(115, 205, 255, 0.38), transparent 56%);
  border: 1px solid rgba(108, 182, 255, 0.24);
  box-shadow: inset 0 0 80px rgba(63, 157, 255, 0.18), 0 30px 80px rgba(0, 13, 34, 0.55);
}

.chip-core::before,
.chip-core::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 26px;
}

.chip-core::before {
  background:
    linear-gradient(135deg, rgba(153, 225, 255, 0.95), rgba(27, 108, 255, 0.88));
  box-shadow: 0 0 65px rgba(53, 161, 255, 0.42);
}

.chip-core::after {
  inset: 23%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(0, 0, 0, 0.02)),
    linear-gradient(135deg, rgba(60, 198, 255, 0.92), rgba(13, 89, 238, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.chip-lines,
.chip-lines::before,
.chip-lines::after {
  position: absolute;
  inset: 0;
  content: "";
}

.chip-lines {
  background:
    linear-gradient(90deg, transparent 0 11%, rgba(63, 157, 255, 0.28) 11% 13%, transparent 13% 22%, rgba(63, 157, 255, 0.28) 22% 24%, transparent 24%),
    linear-gradient(transparent 0 16%, rgba(63, 157, 255, 0.18) 16% 18%, transparent 18% 29%, rgba(63, 157, 255, 0.18) 29% 31%, transparent 31%);
  opacity: 0.85;
}

.chip-lines::before {
  inset: auto -16% 43% 62%;
  border-top: 2px solid rgba(76, 182, 255, 0.34);
  box-shadow: 0 0 18px rgba(76, 182, 255, 0.22);
}

.chip-lines::after {
  inset: 66% 58% auto -18%;
  border-bottom: 2px solid rgba(76, 182, 255, 0.34);
  box-shadow: 0 0 18px rgba(76, 182, 255, 0.22);
}

.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-icons span {
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(120, 190, 255, 0.22);
  background: rgba(8, 29, 58, 0.72);
  color: #d9f1ff;
  font-size: 12px;
}

.floating-icons span:nth-child(1) { top: 12%; left: 6%; }
.floating-icons span:nth-child(2) { top: 2%; right: 18%; }
.floating-icons span:nth-child(3) { bottom: 22%; left: 0; }
.floating-icons span:nth-child(4) { bottom: 8%; right: 10%; }

.page-title {
  padding: 72px 0 28px;
}

.page-hero {
  padding-bottom: 34px;
}

.page-hero .hero-grid {
  align-items: start;
}

.section {
  padding: 18px 0 32px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.grid-2,
.grid-3,
.grid-4,
.grid-5 {
  display: grid;
  gap: 18px;
}

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

.card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(46, 134, 255, 0.28), rgba(77, 217, 255, 0.12));
  border: 1px solid rgba(110, 182, 255, 0.22);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.media-box,
.media-pill,
.media-banner,
.map-box {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(34, 87, 180, 0.65), rgba(9, 24, 49, 0.96)),
    radial-gradient(circle at center, rgba(76, 182, 255, 0.26), transparent 55%);
  border: 1px solid rgba(96, 171, 255, 0.18);
  min-height: 180px;
}

.media-box::before,
.media-pill::before,
.media-banner::before,
.map-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(117, 193, 255, 0.16) 22% 23%, transparent 23% 57%, rgba(117, 193, 255, 0.16) 57% 58%, transparent 58%),
    linear-gradient(transparent 0 28%, rgba(117, 193, 255, 0.13) 28% 29%, transparent 29% 61%, rgba(117, 193, 255, 0.13) 61% 62%, transparent 62%);
  opacity: 0.85;
}

.media-box span,
.media-pill span,
.media-banner span,
.map-box span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-size: 15px;
  color: #f4f9ff;
  letter-spacing: 0.04em;
}

.media-image,
.company-visual,
.facility-image,
.application-image,
.product-image,
.news-image,
.map-image,
.building-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.media-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(96, 171, 255, 0.18);
  box-shadow: var(--shadow);
  background: rgba(8, 23, 48, 0.7);
}

.feature-media {
  margin-top: 16px;
  aspect-ratio: 16 / 7.6;
}

.feature-media .media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-figure {
  display: grid;
  place-items: center;
  min-height: 170px;
  margin-bottom: 16px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 40, 77, 0.8), rgba(10, 24, 49, 0.9));
  border: 1px solid rgba(96, 171, 255, 0.14);
}

.product-image {
  max-width: 160px;
  max-height: 130px;
  object-fit: contain;
}

.application-image {
  aspect-ratio: 1.28 / 1;
  height: 150px;
  border-radius: 14px;
  border: 1px solid rgba(96, 171, 255, 0.18);
  object-fit: cover;
  object-position: center 62%;
}

.company-visual {
  min-height: 260px;
}

.page-hero-image {
  width: 100%;
  min-height: 340px;
  max-height: 380px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(96, 171, 255, 0.18);
  box-shadow: var(--shadow);
}

.contact-photo-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 16px;
}

.media-pill {
  min-height: 120px;
}

.media-banner {
  min-height: 250px;
}

.map-box {
  min-height: 380px;
}

.highlight-strip,
.cta-banner {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(13, 53, 118, 0.95), rgba(11, 30, 61, 0.95)),
    radial-gradient(circle at right center, rgba(63, 157, 255, 0.2), transparent 38%);
  border: 1px solid rgba(96, 171, 255, 0.22);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

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

.timeline-item,
.process-step {
  padding: 22px;
  position: relative;
}

.timeline-item .step,
.process-step .step {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #1f81ff, #36c3ff);
  box-shadow: 0 10px 20px rgba(41, 129, 255, 0.25);
}

.timeline-item strong,
.process-step strong {
  display: block;
  margin: 18px 0 10px;
  font-size: 18px;
}

.footer {
  margin-top: 40px;
  padding: 34px 0 22px;
  border-top: 1px solid rgba(89, 164, 255, 0.14);
  background: rgba(3, 9, 20, 0.48);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr;
  gap: 18px;
}

.footer-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(8, 24, 50, 0.64);
  border: 1px solid rgba(89, 164, 255, 0.14);
}

.footer-logo {
  width: 280px;
  max-width: 100%;
  margin-bottom: 14px;
}

.footer-qr {
  width: 96px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(117, 193, 255, 0.12);
  background: transparent;
}

.footer-showroom {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(117, 193, 255, 0.18);
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px;
  justify-content: start;
  align-items: start;
}

.qr-box {
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px solid rgba(117, 193, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0 12%, transparent 12% 18%, rgba(255, 255, 255, 0.88) 18% 30%, transparent 30% 36%, rgba(255, 255, 255, 0.88) 36% 48%, transparent 48% 54%, rgba(255, 255, 255, 0.88) 54% 66%, transparent 66% 72%, rgba(255, 255, 255, 0.88) 72% 84%, transparent 84%),
    linear-gradient(rgba(255, 255, 255, 0.88) 0 12%, transparent 12% 18%, rgba(255, 255, 255, 0.88) 18% 30%, transparent 30% 36%, rgba(255, 255, 255, 0.88) 36% 48%, transparent 48% 54%, rgba(255, 255, 255, 0.88) 54% 66%, transparent 66% 72%, rgba(255, 255, 255, 0.88) 72% 84%, transparent 84%),
    #eef6ff;
  background-size: 100% 100%, 100% 100%, auto;
}

.footer-links a,
.plain-list a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(89, 164, 255, 0.12);
  color: #7d93b9;
  font-size: 13px;
}

.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(111, 180, 255, 0.22);
  background: rgba(47, 140, 255, 0.1);
  color: #d8ebff;
  cursor: pointer;
}

.tab-pill.is-active {
  background: linear-gradient(135deg, rgba(32, 129, 255, 0.78), rgba(46, 189, 255, 0.52));
  color: #fff;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
  gap: 20px;
}

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

.news-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(8, 29, 58, 0.88), rgba(7, 23, 48, 0.82));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.news-thumb-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(111, 180, 255, 0.18);
  min-height: 168px;
}

.news-thumb-wrap .news-image {
  min-height: 168px;
}

.news-date-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 64px;
  padding: 10px 8px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(34, 121, 255, 0.96), rgba(17, 80, 185, 0.96));
  text-align: center;
  z-index: 1;
  box-shadow: 0 8px 18px rgba(26, 102, 218, 0.32);
}

.news-date-badge strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.news-date-badge span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.82);
}

.news-date {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(34, 121, 255, 0.95), rgba(17, 80, 185, 0.95));
  display: grid;
  place-items: center;
  min-height: 146px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.news-date strong {
  font-size: 34px;
}

.news-date span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.news-card h3,
.news-detail h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.news-card h3 {
  font-size: 24px;
}

.news-card .meta-row,
.detail-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #a4bbdd;
  margin-bottom: 12px;
}

.news-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.search-box,
.form-field,
.admin-table input,
.admin-table textarea,
.admin-panel input,
.admin-panel textarea,
.admin-panel select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(111, 180, 255, 0.2);
  background: rgba(5, 15, 32, 0.7);
  color: var(--text);
  outline: none;
}

.search-box:focus,
.form-field:focus,
.admin-panel input:focus,
.admin-panel textarea:focus,
.admin-panel select:focus {
  border-color: rgba(81, 168, 255, 0.58);
  box-shadow: 0 0 0 3px rgba(47, 140, 255, 0.14);
}

.subscribe-box {
  display: grid;
  gap: 12px;
}

.pagination {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pagination button {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(111, 180, 255, 0.18);
  background: rgba(47, 140, 255, 0.12);
  color: var(--text);
  cursor: pointer;
}

.pagination button.is-active {
  background: linear-gradient(135deg, #2081ff, #2ebdff);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.9fr);
  gap: 20px;
}

.news-detail,
.admin-panel,
.login-panel {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8, 29, 58, 0.92), rgba(8, 23, 48, 0.88));
  border: 1px solid rgba(111, 180, 255, 0.18);
  box-shadow: var(--shadow);
}

.news-detail-body {
  color: #d7e7fb;
  line-height: 1.95;
}

.news-detail-body p {
  margin: 0 0 18px;
}

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

.sidebar-item {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(111, 180, 255, 0.16);
  background: rgba(5, 15, 32, 0.5);
}

.sidebar-item.is-media {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.sidebar-thumb {
  width: 86px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(111, 180, 255, 0.18);
}

.sidebar-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

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

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

.contact-form .span-2 {
  grid-column: span 2;
}

.admin-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.login-panel {
  width: min(100%, 460px);
}

.login-panel h1,
.admin-panel h1 {
  margin-top: 0;
}

.admin-shell {
  padding: 40px 0 60px;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 20px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.admin-form-grid {
  display: grid;
  gap: 12px;
}

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

.admin-form-grid .full {
  grid-column: 1 / -1;
}

.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(111, 180, 255, 0.12);
  text-align: left;
  vertical-align: top;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(47, 140, 255, 0.14);
  color: #cde4ff;
  font-size: 12px;
}

.tag.success {
  background: rgba(55, 211, 157, 0.18);
  color: #bcffec;
}

.tag.draft {
  background: rgba(255, 197, 74, 0.16);
  color: #ffe5a6;
}

.empty-state {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(111, 180, 255, 0.22);
  border-radius: 16px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(8, 29, 58, 0.95);
  color: #fff;
  border: 1px solid rgba(111, 180, 255, 0.18);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  animation: revealUp 0.8s ease forwards;
}

.reveal-up:nth-child(2) { animation-delay: 0.08s; }
.reveal-up:nth-child(3) { animation-delay: 0.16s; }
.reveal-up:nth-child(4) { animation-delay: 0.24s; }
.reveal-up:nth-child(5) { animation-delay: 0.32s; }

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .news-layout,
  .detail-layout,
  .admin-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .visual-stage {
    min-height: 360px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 74px;
    height: auto;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    min-height: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
  }

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

  .header-actions {
    margin-left: auto;
    min-height: auto;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1,
  .page-title h1 {
    font-size: 38px;
  }

  .hero-slider,
  .hero-slide-content {
    min-height: 520px;
  }

  .hero-copy.hero-copy--banner {
    max-width: 100%;
    padding: 28px 0 56px;
  }

  .hero-copy--banner h1 {
    font-size: 42px;
  }

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

  .hero-points,
  .admin-stats,
  .contact-form,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-4,
  .grid-5,
  .contact-layout,
  .timeline {
    grid-template-columns: 1fr;
  }

  .highlight-strip,
  .cta-banner,
  .admin-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

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

  .news-date {
    min-height: 110px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 100%);
  }

  .hero h1,
  .page-title h1 {
    font-size: 32px;
  }

  .hero-slider,
  .hero-slide-content {
    min-height: 460px;
  }

  .hero-copy--banner h1 {
    font-size: 34px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text span,
  .contact-mini {
    display: none;
  }

  .page-title,
  .section,
  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .point-card,
  .feature-card,
  .metric-card,
  .mini-card,
  .contact-card,
  .info-card,
  .support-card,
  .category-card,
  .aside-card,
  .product-card,
  .application-card,
  .admin-stat,
  .news-card,
  .news-detail,
  .admin-panel,
  .login-panel {
    padding: 18px;
  }
}
