:root {
  --ink: #102826;
  --text: #183632;
  --muted: #667873;
  --line: #dce9e4;
  --paper: #f4faf7;
  --white: #ffffff;
  --teal: #087d8b;
  --teal-dark: #075f68;
  --deep: #0b342f;
  --coral: #e86f4d;
  --gold: #d7a23f;
  --mint: #e4f4ef;
  --aqua: #d7f1ee;
  --shadow-soft: 0 18px 50px rgba(16, 40, 38, 0.1);
  --shadow-strong: 0 28px 90px rgba(16, 40, 38, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

body::selection {
  color: var(--white);
  background: var(--teal);
}

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

img {
  max-width: 100%;
}

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

.top-announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 42px;
  padding: 8px 20px;
  color: var(--white);
  background: linear-gradient(90deg, var(--deep), var(--teal-dark));
  font-size: 0.9rem;
  font-weight: 800;
}

.top-announcement a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--deep);
  background: #8ee1d5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(220, 233, 228, 0.75);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  box-shadow: 0 8px 26px rgba(16, 40, 38, 0.05);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep) 0%, var(--teal) 58%, #34b5a5 100%);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(8, 125, 139, 0.28);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: #344d48;
  font-size: 0.95rem;
}

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

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.main-nav a:hover {
  color: var(--teal-dark);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.lang-toggle,
.primary-link,
.button,
.back-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.lang-toggle {
  width: 50px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.primary-link,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #f08b67);
  box-shadow: 0 12px 26px rgba(232, 111, 77, 0.22);
}

.primary-link {
  padding: 0 17px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(54px, 7vw, 104px) clamp(20px, 5vw, 72px) 72px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(228, 244, 239, 0.86) 46%, rgba(255, 255, 255, 0.92) 100%),
    url("assets/hainan-hero.png") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(8, 125, 139, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 125, 139, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 70%);
}

.hero-copy {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2.45rem, 4.7vw, 4.35rem);
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 32px;
  color: #536864;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

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

.button {
  min-width: 148px;
  border: 0;
  padding: 0 22px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.primary-link:hover,
.back-home:hover {
  transform: translateY(-2px);
}

.button.secondary {
  border: 1px solid rgba(8, 125, 139, 0.22);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(8, 125, 139, 0.18);
  border-radius: 999px;
  color: #254a45;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #20aa7a;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin: 0;
}

.hero-metrics div {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(8, 125, 139, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(16, 40, 38, 0.06);
}

.hero-metrics div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--teal);
}

.hero-metrics dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  background: var(--aqua);
  transform: translateZ(0);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 52, 47, 0.28) 100%);
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  animation: imageFloat 9s ease-in-out infinite;
}

.status-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(350px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: rgba(11, 52, 47, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  animation: panelFloat 5.5s ease-in-out infinite;
}

.status-panel span,
.status-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.status-panel strong {
  display: block;
  margin: 7px 0;
  font-size: 1.15rem;
}

.market-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-top: 1px solid rgba(220, 233, 228, 0.9);
  border-bottom: 1px solid rgba(220, 233, 228, 0.9);
  background: var(--line);
}

.market-rail::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: translateX(-120%);
  animation: railSheen 7s ease-in-out infinite;
}

.market-rail span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 18px clamp(18px, 3vw, 34px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.market-rail span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(232, 111, 77, 0.12);
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(26px, 5vw, 82px);
  align-items: end;
  background: var(--white);
}

.intro-band h2,
.section-heading h2,
.audience-copy h2,
.team-section h2,
.contact-section h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.5vw, 3.35rem);
  line-height: 1.08;
}

.intro-band p:last-child,
.audience-copy p:last-child,
.contact-section p {
  color: var(--muted);
}

.section-heading {
  display: flex;
  flex-direction: column;
  max-width: 820px;
  margin-bottom: 34px;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(220, 233, 228, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), #43b7a8, var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(8, 125, 139, 0.34);
  box-shadow: 0 28px 70px rgba(16, 40, 38, 0.14);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 36px;
  margin-bottom: 30px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--mint);
  font-weight: 900;
}

.service-card h3,
.step h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.25;
}

.service-card p,
.step p {
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 900;
}

.included-section {
  background:
    radial-gradient(circle at 84% 16%, rgba(142, 225, 213, 0.28), transparent 28%),
    linear-gradient(180deg, var(--white) 0%, #f2faf7 100%);
}

.included-section .section-heading p:last-child {
  max-width: 760px;
  color: var(--muted);
}

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

.included-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(220, 233, 228, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.included-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(8, 125, 139, 0.08);
}

.included-card span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--coral);
  font-weight: 900;
}

.included-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.22rem;
}

.included-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.pathway {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fffb 0%, #e8f6f2 100%);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 46px;
  height: 2px;
  background: linear-gradient(90deg, rgba(8, 125, 139, 0.16), var(--teal), rgba(232, 111, 77, 0.4));
}

.step {
  position: relative;
  min-height: 248px;
  padding: 26px;
  border: 1px solid rgba(220, 233, 228, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.step span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(8, 125, 139, 0.1);
  font-weight: 900;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  background:
    linear-gradient(rgba(11, 52, 47, 0.88), rgba(11, 52, 47, 0.9)),
    url("assets/hainan-hero.png") center / cover fixed;
  color: var(--white);
}

.audience-section .section-kicker {
  color: #8ee1d5;
}

.audience-section h2 {
  color: var(--white);
}

.audience-copy p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

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

.audience-list span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.audience-list span::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(142, 225, 213, 0.28);
  border-radius: 50%;
}

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

.team-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.54fr);
  gap: clamp(22px, 5vw, 74px);
  align-items: end;
  max-width: none;
}

.team-section .section-heading p:last-child {
  margin-bottom: 4px;
  color: var(--muted);
}

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(16, 40, 38, 0.14);
}

.team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--aqua);
  filter: saturate(0.96) contrast(1.03);
}

.team-card div {
  padding: 19px;
}

.team-card h3 {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 1.08rem;
}

.team-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(340px, 0.72fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #ffffff 0%, #eef8f5 100%);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(220, 233, 228, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-strong);
}

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

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(8, 125, 139, 0.58);
  box-shadow: 0 0 0 4px rgba(8, 125, 139, 0.1);
}

.lead-form textarea {
  min-height: 124px;
  resize: vertical;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status.is-success {
  color: #18804b;
}

.form-status.is-error {
  color: #b3261e;
}

.resource-section {
  background: var(--paper);
}

.resource-section .section-heading p:last-child {
  color: var(--muted);
}

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

.resource-card {
  min-height: 196px;
  padding: 23px;
  border: 1px solid rgba(220, 233, 228, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 38px rgba(16, 40, 38, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.resource-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 111, 77, 0.5);
  box-shadow: 0 24px 60px rgba(16, 40, 38, 0.12);
}

.resource-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--coral);
  font-weight: 900;
}

.resource-card h3 {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.2rem;
}

.resource-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.social-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 32px 20px 38px;
  background: var(--paper);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: #df2f25;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link.xhs {
  font-size: 0.78rem;
}

.wechat-icon {
  position: relative;
  overflow: hidden;
}

.wechat-bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--white);
}

.wechat-bubble::before,
.wechat-bubble::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #df2f25;
}

.wechat-bubble.main {
  width: 21px;
  height: 16px;
  left: 9px;
  top: 13px;
}

.wechat-bubble.main::before {
  left: 6px;
  top: 6px;
}

.wechat-bubble.main::after {
  right: 6px;
  top: 6px;
}

.wechat-bubble.small {
  width: 17px;
  height: 13px;
  right: 8px;
  bottom: 11px;
  box-shadow: 0 0 0 2px #df2f25;
}

.wechat-bubble.small::before {
  left: 5px;
  top: 5px;
}

.wechat-bubble.small::after {
  right: 5px;
  top: 5px;
}

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

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

.wechat-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 20, 0.56);
}

.wechat-dialog {
  position: relative;
  width: min(920px, 100%);
  padding: clamp(38px, 7vw, 76px) clamp(24px, 7vw, 82px);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.wechat-dialog h2 {
  margin-bottom: 28px;
  color: #df2f25;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1;
}

.wechat-dialog p {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 2.3rem;
  line-height: 1;
  cursor: pointer;
}

.qr-placeholder {
  display: inline-grid;
  place-items: center;
  width: min(230px, 70vw);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
}

.qr-placeholder img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.subpage-body {
  background: var(--paper);
}

.subpage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.back-home {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.subpage-hero {
  padding: clamp(58px, 9vw, 116px) clamp(20px, 5vw, 72px) clamp(42px, 7vw, 82px);
  background: linear-gradient(135deg, #ffffff 0%, #e8f6f2 100%);
}

.subpage-hero h1 {
  max-width: 900px;
}

.subpage-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.subpage-content {
  padding: clamp(36px, 5vw, 60px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 104px);
}

.insights-page,
.article-layout,
.admin-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(38px, 6vw, 72px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 104px);
}

.insights-main,
.article-main,
.admin-panel {
  min-width: 0;
}

.insight-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.insight-tabs button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.insight-tabs button.is-active {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
}

.insight-list {
  display: grid;
  gap: 14px;
}

.insight-row a {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.insight-row a:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 125, 139, 0.36);
  box-shadow: 0 24px 58px rgba(16, 40, 38, 0.12);
}

.insight-row span {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
}

.insight-row h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.insight-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.insight-row time {
  color: #7a8b86;
  font-size: 0.9rem;
  font-weight: 800;
}

.insight-empty {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.insights-aside,
.article-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
}

.sidebar-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.sidebar-panel h2 {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.2rem;
}

.sidebar-panel > a,
.sidebar-links a {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
}

.sidebar-panel > a:last-child,
.sidebar-links a:last-child {
  border-bottom: 0;
}

.sidebar-links span {
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-panel {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--teal-dark));
}

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

.article-main {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.article-main h1 {
  max-width: 980px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}

.article-meta span {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--mint);
}

.article-summary {
  padding: 18px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  color: var(--text);
  background: #f2faf7;
  font-size: 1.05rem;
  font-weight: 700;
}

.article-body {
  margin-top: 28px;
  color: #2b4540;
  font-size: 1.05rem;
}

.article-body h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 1.55rem;
}

.article-body p {
  margin-bottom: 18px;
}

.article-download {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 16px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.admin-page {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.admin-panel {
  display: grid;
  gap: 26px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-strong);
}

.admin-panel h1 {
  max-width: 100%;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.admin-panel > div > p:last-child {
  color: var(--muted);
}

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

.admin-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

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

.admin-form textarea {
  min-height: 130px;
  resize: vertical;
}

.admin-form textarea[name="content"] {
  min-height: 260px;
}

.insights-hero-pro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(28px, 6vw, 72px);
  overflow: hidden;
}

.insights-hero-pro::after {
  content: "";
  position: absolute;
  right: 5vw;
  bottom: -80px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(8, 125, 139, 0.18), transparent 68%);
  pointer-events: none;
}

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

.insights-hero-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(8, 125, 139, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.insights-hero-card span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insights-hero-card strong {
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.insights-hero-card p {
  margin: 0;
}

.insights-section-head {
  margin-bottom: 18px;
}

.insights-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.admin-body {
  min-height: 100vh;
}

.admin-page {
  grid-template-columns: minmax(0, 1180px);
}

.admin-panel {
  gap: 30px;
  border-color: rgba(8, 125, 139, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 245, 0.86)),
    var(--white);
}

.admin-intro {
  max-width: 860px;
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

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

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

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

.admin-form label > span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  min-height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(16, 40, 38, 0.05);
}

.admin-form textarea[name="summary"] {
  min-height: 104px;
}

.admin-form textarea[name="content"] {
  min-height: 280px;
}

.admin-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-actions .button {
  min-width: 180px;
}

.admin-tips {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(8, 125, 139, 0.18);
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.admin-tips h2,
.admin-tips .section-kicker {
  color: var(--white);
}

.admin-tips ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.admin-tips li {
  color: rgba(255, 255, 255, 0.84);
}

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

.content-card,
.faq-item,
.partner-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.content-card h2,
.faq-item h2,
.partner-card h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
}

.content-card p,
.faq-item p,
.partner-card p {
  color: var(--muted);
}

.partner-logo {
  display: grid;
  place-items: center;
  height: 112px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--mint);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #0b211e;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes imageFloat {
  0%,
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.07) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes railSheen {
  0%,
  42% {
    transform: translateX(-120%);
  }
  78%,
  100% {
    transform: translateX(320%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero,
  .intro-band,
  .audience-section,
  .team-section .section-heading,
  .contact-section,
  .insights-page,
  .article-layout,
  .insights-hero-pro,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-tips {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .market-rail,
  .service-grid,
  .included-grid,
  .steps,
  .team-grid,
  .resource-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps::before {
    display: none;
  }
}

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

  .top-announcement {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 10px 20px;
  }

  .brand {
    min-width: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

  .primary-link {
    display: none;
  }

  .hero {
    padding-top: 38px;
    overflow: visible;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .eyebrow {
    max-width: calc(100vw - 48px);
    font-size: 0.68rem;
    word-break: break-all;
  }

  h1 {
    max-width: min(100%, 280px);
    font-size: clamp(1.52rem, 6.8vw, 1.72rem);
    line-height: 1.12;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero-text {
    max-width: min(100%, 300px);
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    max-width: calc(100vw - 48px);
  }

  .hero-proof span {
    justify-content: flex-start;
    width: 100%;
  }

  .hero-metrics,
  .market-rail,
  .service-grid,
  .included-grid,
  .steps,
  .audience-list,
  .team-grid,
  .resource-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .subpage-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 390px;
  }

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

  .site-footer {
    flex-direction: column;
  }

  .insights-page,
  .article-layout,
  .admin-page {
    padding-right: 20px;
    padding-left: 20px;
  }

  .article-main,
  .admin-panel {
    padding: 24px;
  }
}
