:root {
  --accent: #e50914;
  --accent-dark: #b90610;
  --ink: #0d1024;
  --muted: #5c6680;
  --line: #e9edf5;
  --soft: #f6f8fc;
  --paper: #ffffff;
  --navy: #11152b;
  --cyan: #16a3b8;
  --shadow: 0 24px 55px rgba(18, 22, 45, 0.1);
  --radius: 8px;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 90px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(16, 22, 40, 0.04);
}

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

.brand-logo {
  display: block;
  width: 210px;
  height: auto;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 35%, #fff 0 8%, transparent 9%),
    radial-gradient(circle at 58% 62%, #fff 0 7%, transparent 8%),
    linear-gradient(135deg, #ff2430, var(--accent-dark));
  box-shadow: 12px -11px 0 -7px #ff5b47, 19px -17px 0 -12px #ff8a67;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: #fff;
}

.brand-mark::before {
  width: 25px;
  height: 3px;
  top: 22px;
  left: 11px;
  transform: rotate(-24deg);
  opacity: 0.86;
}

.brand-mark::after {
  width: 3px;
  height: 25px;
  top: 11px;
  left: 22px;
  transform: rotate(-24deg);
  opacity: 0.86;
}

.brand-dot {
  position: absolute;
  inset: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.brand-text {
  color: #121632;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.main-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  justify-content: center;
  padding: 0 20px;
}

.main-nav a {
  position: relative;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.3;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
  min-height: 56px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: pointer;
}

.icon-button svg,
.quote-button svg,
.phone-icon svg,
.service-card svg,
.news-card svg,
.check-list svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.4;
}

.quote-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 26px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.quote-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
  font-weight: 900;
  white-space: nowrap;
  border-left: 1px solid var(--line);
}

.phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
}

.nav-toggle {
  display: none;
}

.search-panel {
  position: absolute;
  right: 224px;
  bottom: -70px;
  display: none;
  align-items: center;
  gap: 8px;
  width: min(420px, calc(100vw - 32px));
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.search-panel.open {
  display: flex;
}

.search-panel input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--soft);
  border-radius: 6px;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 90px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

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

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 8, 22, 0.38), rgba(5, 8, 22, 0.08)),
    linear-gradient(180deg, rgba(4, 8, 22, 0.12), rgba(4, 8, 22, 0.42));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 48px));
  text-align: center;
  transform: translateY(-8px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 14px;
  color: var(--accent);
  background: rgba(229, 9, 20, 0.11);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-shadow: 0 7px 32px rgba(0, 0, 0, 0.4);
}

.hero h1 span {
  display: inline;
}

.hero p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.36);
}

.hero-copy span {
  display: inline;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 15px 32px rgba(229, 9, 20, 0.3);
}

.hero-arrow {
  position: absolute;
  z-index: 3;
  width: 58px;
  height: 58px;
  color: var(--ink);
}

.hero-arrow.prev {
  left: 30px;
}

.hero-arrow.next {
  right: 30px;
  color: #fff;
  background: var(--accent);
  box-shadow: none;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 14px;
  height: 14px;
  padding: 0;
  background: transparent;
  border: 3px solid #fff;
  cursor: pointer;
}

.hero-dots button.active {
  background: #fff;
}

.section {
  padding: 90px 16px;
}

.feature-grid,
.service-grid,
.news-grid,
.about,
.join-content,
.footer-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}

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

.feature-card {
  position: relative;
  min-height: 274px;
  padding: 34px 26px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-number {
  position: absolute;
  top: 36px;
  right: 26px;
  color: #1d3769;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
}

.feature-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.2;
}

.feature-card h2 {
  margin: 24px 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 24px;
  line-height: 1.25;
}

.feature-card p {
  margin: 0;
  color: #415071;
  font-size: 16px;
  line-height: 1.8;
}

.podan-section {
  padding-top: 34px;
  background: #fff;
}

.podan-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: center;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.podan-media {
  position: relative;
}

.podan-media::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: -1;
  width: 72%;
  height: 72%;
  background: rgba(229, 9, 20, 0.1);
  border-radius: var(--radius);
}

.podan-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.podan-copy h2 {
  margin: 18px 0 20px;
  color: var(--ink);
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

.podan-copy p {
  margin: 0 0 16px;
  color: #33466c;
  font-size: 16px;
  line-height: 1.9;
}

.podan-copy p:last-child {
  margin-bottom: 0;
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
  overflow: hidden;
}

.about::before {
  content: "";
  display: none;
}

.media-stack {
  position: relative;
  min-height: 460px;
}

.dot-pattern {
  position: absolute;
  left: 0;
  top: 95px;
  width: 155px;
  opacity: 0.9;
}

.goal-card {
  position: absolute;
  left: 70px;
  bottom: 44px;
  z-index: 2;
  width: 236px;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(10, 18, 40, 0.08);
}

.about-person {
  position: absolute;
  right: 0;
  bottom: 10px;
  z-index: 1;
  width: min(430px, 72%);
  max-height: 440px;
  object-fit: contain;
}

.floating-badge {
  position: absolute;
  right: -28px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  color: #fff;
  background: var(--accent);
  border: 8px solid #fff;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(229, 9, 20, 0.22);
}

.floating-badge svg {
  width: 42px;
  height: 42px;
}

.about-badge {
  top: 38px;
  right: -14px;
  bottom: auto;
  z-index: 3;
  width: 86px;
  height: 86px;
  border: 0;
  box-shadow: 0 16px 36px rgba(229, 9, 20, 0.22);
}

.about-copy h2,
.section-heading h2,
.join-copy h2 {
  margin: 18px 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.about-copy h2 {
  font-size: clamp(34px, 3.1vw, 46px);
}

.about-copy p,
.join-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.about-stat-card {
  display: flex;
  align-items: center;
  min-height: 130px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.about-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  min-width: 82px;
  height: 72px;
  margin-right: 24px;
  color: var(--accent);
  border-right: 1px solid var(--line);
}

.about-stat-icon svg {
  width: 46px;
  height: 46px;
  stroke-width: 2.1;
}

.about-stat-card strong {
  display: block;
  color: var(--navy);
  font-size: 36px;
  line-height: 1;
}

.about-stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.stats div {
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.stats strong {
  display: block;
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.services {
  background:
    radial-gradient(ellipse at center, rgba(245, 250, 255, 0.52), transparent 64%),
    repeating-radial-gradient(ellipse at center, rgba(47, 90, 163, 0.035) 0 2px, transparent 2px 18px),
    var(--soft);
}

.section-heading {
  width: min(1240px, 100%);
  margin: 0 auto 66px;
  text-align: left;
}

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

.service-card {
  min-height: 300px;
  padding: 30px;
  background: #fff;
  border: 1px solid #dde3ee;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: var(--accent);
  background: rgba(229, 9, 20, 0.12);
  border-radius: 14px;
}

.service-icon svg {
  width: 36px;
  height: 36px;
}

.service-card h3,
.news-card h3 {
  margin: 26px 0 12px;
  font-size: 24px;
  line-height: 1.35;
}

.service-card p,
.news-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.service-card a,
.news-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.join {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.join-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 31, 0.9), rgba(8, 10, 31, 0.72)),
    url("https://guowai.xieyiqiu.net/wp-content/uploads/2025/03/5-1.jpg") center / cover;
}

.join-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, transparent 45%, rgba(255, 255, 255, 0.1) 46%, rgba(255, 255, 255, 0.1) 54%, transparent 55%),
    linear-gradient(150deg, transparent 45%, rgba(255, 255, 255, 0.1) 46%, rgba(255, 255, 255, 0.1) 54%, transparent 55%);
  background-size: 84px 48px;
  opacity: 0.28;
}

.join-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 82px;
  align-items: center;
  min-height: 510px;
  padding: 84px 16px;
}

.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  color: #fff;
  background: var(--accent);
  border: 6px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(229, 9, 20, 0.36);
}

.play-button svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.join-play {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.join-copy h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.12;
}

.join-copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.9;
}

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

.join-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 12px 24px 12px 14px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(1px);
  border-radius: 0;
}

.join-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-width: 58px;
  height: 58px;
  color: var(--accent);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.join-feature-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.2;
}

.join-feature h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

body.video-modal-open {
  overflow: hidden;
}

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

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 18, 0.82);
  backdrop-filter: blur(4px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  padding: 18px;
  background: #050914;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
}

.video-modal-dialog video {
  display: block;
  width: 100%;
  max-height: min(72vh, 720px);
  background: #000;
  border-radius: 6px;
}

.video-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.video-empty {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.check-list svg {
  color: var(--accent);
  flex: 0 0 auto;
}

.news {
  background:
    linear-gradient(120deg, rgba(13, 16, 36, 0.03), transparent 34%, rgba(22, 163, 184, 0.04)),
    #fff;
}

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

.news-card {
  min-height: 238px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(17, 21, 43, 0.06);
}

.news-card h3 {
  margin-top: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0c0d1c;
}

.archive-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  overflow: hidden;
  background: #07070b;
}

.archive-hero-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.94) 64%),
    linear-gradient(135deg, rgba(229, 9, 20, 0.22), transparent 28%),
    url("https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=1500&q=80") left center / 52% 100% no-repeat,
    #05060a;
}

.archive-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, transparent 45%, rgba(255, 255, 255, 0.08) 46%, rgba(255, 255, 255, 0.08) 54%, transparent 55%),
    linear-gradient(150deg, transparent 45%, rgba(255, 255, 255, 0.08) 46%, rgba(255, 255, 255, 0.08) 54%, transparent 55%);
  background-size: 88px 50px;
  opacity: 0.32;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 16px;
  font-weight: 700;
}

.breadcrumb a,
.breadcrumb span:first-of-type {
  color: var(--accent);
}

.breadcrumb span + span::before {
  content: "-";
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.archive-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 275px;
  gap: 48px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 100px 0 520px;
}

.post-list {
  display: grid;
  gap: 24px;
}

.archive-card {
  min-height: 220px;
  padding: 52px 54px 42px;
  background: #fff;
  border: 1px solid #dfe4ee;
  border-radius: var(--radius);
}

.archive-card h1,
.archive-card h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.28;
  letter-spacing: 0;
}

.archive-card h1 a,
.archive-card h2 a {
  display: inline;
  color: inherit;
  font-weight: inherit;
}

.archive-card p {
  margin: 0 0 20px;
  color: #33466c;
  font-size: 16px;
  line-height: 1.8;
}

.cms-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  margin: 0 0 24px;
  border-radius: 6px;
}

.archive-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
}

.archive-card svg,
.pagination svg {
  width: 19px;
  height: 19px;
}

.archive-sidebar {
  display: grid;
  align-content: start;
  gap: 40px;
}

.ad-card {
  display: block;
  background: #fff;
  border: 1px solid #dfe4ee;
  border-radius: var(--radius);
  overflow: hidden;
}

.ad-card {
  padding: 24px 28px;
}

.ad-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 430px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dfe4ee;
  border-radius: 4px;
  font-weight: 800;
}

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

.single-post-main {
  align-items: start;
  padding-bottom: 160px;
}

.single-post-card {
  padding: 54px;
  background: #fff;
  border: 1px solid #dfe4ee;
  border-radius: var(--radius);
}

.single-post-card h1 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.24;
  letter-spacing: 0;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.post-content {
  color: #33466c;
  font-size: 17px;
  line-height: 1.92;
  overflow-wrap: anywhere;
}

.single-post-image {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  margin: 0 0 32px;
  border-radius: 8px;
}

.post-content h2 {
  margin: 34px 0 14px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.35;
}

.post-content p {
  margin: 0 0 18px;
}

.post-content ol,
.post-content ul {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding-left: 1.4em;
}

.post-content li::marker {
  color: var(--accent);
  font-weight: 900;
}

.post-content li p {
  margin: 6px 0 0;
}

.post-content strong {
  color: var(--ink);
}

.post-nav {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.post-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.archive-footer .footer-inner {
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 16px 34px;
}

.archive-footer .footer-inner p {
  font-size: 14px;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 35%, rgba(42, 77, 146, 0.36), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 22px);
  opacity: 0.65;
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding: 98px 16px 28px;
  text-align: center;
}

.footer-inner h2 {
  margin: 0;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 900;
  background: linear-gradient(90deg, #fb141f, #ff8a00, #f01b1b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-line {
  width: min(100%, 980px);
  height: 2px;
  margin: 38px auto 72px;
  background: var(--accent);
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 40;
  display: none;
  color: var(--accent);
  background: #fff;
  box-shadow: inset 0 0 0 3px var(--accent), 0 12px 24px rgba(17, 21, 43, 0.12);
}

.back-to-top.visible {
  display: inline-flex;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

  .main-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
  }

  .main-nav.open,
  .header-actions.open {
    display: flex;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px;
    padding: 18px 0 8px;
  }

  .header-actions {
    align-items: center;
    padding: 8px 0 18px;
  }

  .search-panel {
    right: 16px;
  }

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

  .about,
  .podan-inner,
  .join-content {
    grid-template-columns: 1fr;
  }

  .podan-media {
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .media-stack {
    width: min(640px, 100%);
    margin: 0 auto;
  }

  .join-content {
    gap: 34px;
  }

  .join-copy {
    max-width: 720px;
  }

  .archive-main {
    grid-template-columns: 1fr;
    padding: 82px 0 300px;
  }

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

  .ad-card {
    align-self: start;
  }

  .pagination {
    margin-top: 160px;
  }
}

@media (min-width: 1101px) and (max-width: 1360px) {
  .main-nav {
    gap: 20px;
    padding: 0 14px;
  }

  .phone-link {
    padding-left: 0;
    border-left: 0;
  }

  .phone-link > span:last-child {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    min-height: 76px;
    padding-right: 76px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 160px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    font-size: 26px;
  }

  .nav-toggle {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 2;
    color: #fff;
    background: var(--accent);
    box-shadow: none;
  }

  .main-nav.open,
  .header-actions.open {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav a {
    padding: 8px 0;
  }

  .phone-link,
  .quote-button {
    justify-content: center;
    min-height: 52px;
  }

  .phone-link {
    padding-left: 0;
    border-left: 0;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    width: min(100% - 32px, 580px);
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.15;
    word-break: break-all;
  }

  .hero h1 span {
    display: block;
  }

  .hero p:not(.eyebrow) {
    font-size: 16px;
    width: min(300px, calc(100% - 40px));
    max-width: 300px;
    line-height: 1.72;
  }

  .hero-copy span {
    display: block;
  }

  .hero-arrow {
    top: auto;
    bottom: 72px;
    width: 48px;
    height: 48px;
  }

  .hero-arrow.prev {
    left: 18px;
  }

  .hero-arrow.next {
    right: 18px;
  }

  .section {
    padding: 66px 16px;
  }

  .feature-grid,
  .service-grid,
  .news-grid,
  .stats,
  .check-list {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .service-card,
  .news-card {
    min-height: auto;
  }

  .podan-section {
    padding-top: 24px;
  }

  .podan-inner {
    gap: 34px;
  }

  .podan-media img {
    aspect-ratio: 16 / 11;
  }

  .podan-copy h2 {
    font-size: 30px;
  }

  .podan-copy p {
    font-size: 15px;
    line-height: 1.85;
  }

  .about {
    gap: 34px;
  }

  .media-stack {
    min-height: 372px;
  }

  .dot-pattern {
    top: 56px;
    width: 120px;
  }

  .goal-card {
    left: 12px;
    bottom: 22px;
    width: 188px;
  }

  .about-person {
    right: 0;
    bottom: 0;
    width: 78%;
    max-height: 358px;
  }

  .floating-badge {
    right: 16px;
    width: 74px;
    height: 74px;
  }

  .about-badge {
    top: 16px;
    right: 10px;
    width: 70px;
    height: 70px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stat-card {
    min-height: 112px;
  }

  .join-content {
    min-height: auto;
    padding: 72px 16px;
  }

  .join-features {
    grid-template-columns: 1fr;
  }

  .join-feature {
    min-height: 70px;
  }

  .join-feature h3 {
    font-size: 20px;
  }

  .footer-line {
    margin-bottom: 42px;
  }

  .archive-hero {
    min-height: 228px;
  }

  .archive-hero-art {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.86)),
      linear-gradient(135deg, rgba(229, 9, 20, 0.18), transparent 35%),
      url("https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=900&q=80") left center / cover no-repeat,
      #05060a;
  }

  .breadcrumb {
    flex-wrap: wrap;
    padding: 0 24px;
    font-size: 15px;
  }

  .archive-main {
    width: min(100% - 42px, 560px);
    padding: 88px 0 220px;
  }

  .archive-card {
    min-height: auto;
    padding: 46px 30px 34px;
  }

  .single-post-card {
    padding: 42px 28px 34px;
  }

  .archive-card h1,
  .archive-card h2 {
    font-size: 24px;
  }

  .single-post-card h1 {
    font-size: 28px;
  }

  .post-content {
    font-size: 16px;
  }

  .post-content h2 {
    font-size: 22px;
  }

  .archive-card p {
    font-size: 15px;
  }

  .archive-sidebar {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .widget h2 {
    font-size: 28px;
  }

  .pagination {
    margin-top: 80px;
  }

  .archive-footer .footer-inner {
    min-height: 260px;
  }
}

@media (max-width: 420px) {
  .brand-text {
    font-size: 22px;
  }

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

  .about-copy h2,
  .section-heading h2,
  .join-copy h2 {
    font-size: 30px;
  }
}

/* UI refresh: visual layer only, content stays unchanged. */
:root {
  --ink: #090e1f;
  --muted: #4c5874;
  --line: #dfe6f2;
  --soft: #f4f7fb;
  --paper: #ffffff;
  --navy: #081124;
  --shadow: 0 22px 52px rgba(9, 14, 31, 0.11);
  --shadow-light: 0 14px 34px rgba(9, 14, 31, 0.07);
}

body {
  background: #f7f9fc;
}

.site-header {
  min-height: 84px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 230, 242, 0.92);
  box-shadow: 0 10px 30px rgba(8, 17, 36, 0.06);
  backdrop-filter: blur(14px);
}

.brand {
  min-width: 232px;
}

.brand-logo {
  width: 218px;
}

.main-nav {
  gap: 26px;
}

.main-nav a {
  color: #080d1d;
  font-size: 15px;
  font-weight: 900;
}

.main-nav a::after {
  bottom: -11px;
  height: 4px;
  border-radius: 999px;
}

.icon-button {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.icon-button:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(229, 9, 20, 0.28), 0 12px 22px rgba(9, 14, 31, 0.08);
}

.quote-button,
.primary-button {
  box-shadow: 0 16px 32px rgba(229, 9, 20, 0.26);
}

.hero {
  min-height: calc(100vh - 84px);
  background: #050915;
}

.hero-slide img {
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 22, 0.76), rgba(5, 8, 22, 0.24) 52%, rgba(5, 8, 22, 0.64)),
    linear-gradient(180deg, rgba(5, 8, 22, 0.18), rgba(5, 8, 22, 0.74));
}

.hero-content {
  width: min(1040px, calc(100% - 56px));
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: 1.02;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.hero p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
}

.hero-arrow {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.hero-dots button {
  width: 26px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
}

.hero-dots button.active {
  background: #fff;
}

.section {
  padding: 100px 24px;
}

.features {
  background: #f7f9fc;
}

.feature-grid,
.service-grid,
.news-grid,
.about,
.join-content,
.footer-inner,
.podan-inner {
  width: min(1240px, calc(100% - 32px));
}

.feature-card,
.service-card,
.news-card,
.archive-card,
.single-post-card,
.about-stat-card {
  border: 1px solid rgba(223, 230, 242, 0.96);
  box-shadow: var(--shadow-light);
}

.feature-card,
.service-card,
.news-card {
  overflow: hidden;
}

.feature-card::before,
.service-card::before,
.news-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin: -34px 0 30px;
  background: var(--accent);
  border-radius: 999px;
}

.service-card::before {
  margin-top: -30px;
}

.news-card::before {
  margin-top: -34px;
}

.feature-card {
  min-height: 292px;
  padding: 34px 28px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover,
.service-card:hover,
.news-card:hover,
.archive-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 9, 20, 0.22);
  box-shadow: 0 24px 54px rgba(9, 14, 31, 0.12);
}

.feature-icon {
  width: 68px;
  height: 68px;
  box-shadow: 0 18px 34px rgba(229, 9, 20, 0.24);
}

.feature-card h2,
.service-card h3,
.news-card h3 {
  color: #070c1d;
}

.feature-card p,
.service-card p,
.news-card p,
.archive-card p {
  color: #425071;
}

.podan-section,
.about,
.news {
  background: #fff;
}

.podan-inner {
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(223, 230, 242, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
}

.podan-media img {
  box-shadow: 0 24px 54px rgba(9, 14, 31, 0.15);
}

.podan-media::after {
  display: none;
}

.podan-copy h2 {
  color: #070c1d;
}

.podan-copy p,
.about-copy p,
.join-copy p {
  color: #435173;
}

.section-kicker {
  min-height: 30px;
  padding: 6px 13px;
  border: 1px solid rgba(229, 9, 20, 0.1);
  background: rgba(229, 9, 20, 0.1);
}

.about {
  padding: 34px;
  border: 1px solid rgba(223, 230, 242, 0.7);
  border-radius: var(--radius);
}

.media-stack {
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.05), transparent 44%),
    #fff;
  border-radius: var(--radius);
}

.goal-card,
.about-person {
  filter: drop-shadow(0 18px 28px rgba(9, 14, 31, 0.08));
}

.about-stat-card {
  background:
    linear-gradient(180deg, #fff, #fbfcff);
}

.services {
  background:
    linear-gradient(180deg, #f5f8fd 0%, #eef4fb 100%);
}

.section-heading {
  margin-bottom: 54px;
}

.service-card {
  min-height: 270px;
  padding: 30px 30px 34px;
}

.service-icon {
  width: 66px;
  height: 66px;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(229, 9, 20, 0.08);
}

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

.join {
  background: #071123;
}

.join-bg {
  background:
    linear-gradient(90deg, rgba(7, 13, 31, 0.92), rgba(7, 13, 31, 0.72)),
    url("https://guowai.xieyiqiu.net/wp-content/uploads/2025/03/5-1.jpg") center / cover;
}

.join-content {
  min-height: 540px;
}

.join-feature {
  min-height: 82px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.join-feature h3 {
  font-size: 21px;
}

.news-card {
  min-height: 250px;
}

.site-footer {
  background:
    linear-gradient(180deg, #0a1022, #050814);
}

.footer-inner h2 {
  background: linear-gradient(90deg, #ff1320, #ff7a30 52%, #e50914);
  -webkit-background-clip: text;
  background-clip: text;
}

.archive-main {
  padding-top: 86px;
}

.archive-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ad-card {
  box-shadow: var(--shadow-light);
}

.back-to-top {
  width: 52px;
  height: 52px;
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0 22px;
  }

  .main-nav.open {
    margin-top: 12px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .header-actions.open {
    padding: 12px 0 18px;
  }
}

@media (max-width: 760px) {
  .video-modal {
    padding: 14px;
  }

  .video-modal-dialog {
    padding: 10px;
  }

  .video-modal-close {
    top: 8px;
    right: 8px;
  }

  .site-header {
    min-height: 76px;
    padding-left: 16px;
  }

  .brand-logo {
    width: 172px;
  }

  .nav-toggle {
    box-shadow: 0 14px 26px rgba(229, 9, 20, 0.22);
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    transform: translateY(-18px);
  }

  .hero h1 {
    font-size: 42px;
    word-break: keep-all;
  }

  .section {
    padding: 64px 16px;
  }

  .feature-grid,
  .service-grid,
  .news-grid,
  .podan-inner,
  .about {
    width: 100%;
  }

  .feature-card,
  .service-card,
  .news-card {
    padding: 30px;
  }

  .podan-inner,
  .about {
    padding: 22px;
  }

  .podan-media img {
    aspect-ratio: 4 / 3;
  }

  .podan-copy h2 {
    font-size: 31px;
    line-height: 1.2;
  }

  .services {
    background: #f4f7fb;
  }

  .join-feature {
    border-radius: var(--radius);
  }
}
