:root {
  --paper: #f8f9f7;
  --paper-2: #ecebe7;
  --paper-3: #f2f3f0;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --ink: #0a0b0c;
  --graphite: #242321;
  --muted: #5d625f;
  --muted-2: #7c786f;
  --line: rgba(10, 11, 12, 0.1);
  --line-soft: rgba(10, 11, 12, 0.06);
  --gold: #b99b52;
  --gold-deep: #8c7134;
  --silver: #a8a096;
  --copper: #6c665a;
  --shadow: 0 20px 60px rgba(10, 11, 12, 0.08);
  --shadow-soft: 0 10px 30px rgba(10, 11, 12, 0.055);
  --radius: 8px;
  --font-cn: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  --font-latin: "Inter", "Noto Sans SC", "Source Han Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-cn);
  line-height: 1.72;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 249, 247, 0.98) 42%, rgba(236, 235, 231, 0.96) 100%),
    repeating-linear-gradient(90deg, rgba(10, 11, 12, 0.025) 0, rgba(10, 11, 12, 0.025) 1px, transparent 1px, transparent 52px);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 11, 12, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 11, 12, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.12));
}

body.is-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

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

p {
  color: var(--muted);
}

.site-shell {
  width: min(1240px, calc(100% - 40px));
  max-width: calc(100vw - 40px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(248, 249, 247, 0.78);
  backdrop-filter: blur(22px);
}

.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: 116px;
  height: 46px;
  display: grid;
  place-items: center;
  position: relative;
  filter: drop-shadow(0 8px 16px rgba(10, 11, 12, 0.12)) drop-shadow(0 1px 0 rgba(255, 255, 255, 0.82));
}

.brand-logo img {
  width: 116px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  transform: translateY(-4px);
}

.brand-text {
  display: grid;
  gap: 1px;
  transform: translateY(0);
}

.brand-text strong {
  color: #171311;
  font-size: 19px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: 0.01em;
}

.brand-text span {
  display: none;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
  position: relative;
  padding: 27px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(185, 155, 82, 0), rgba(185, 155, 82, 0.85), rgba(185, 155, 82, 0));
  opacity: 0;
  transition: opacity 0.18s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
}

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

.menu-toggle {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

@media (min-width: 1181px) {
  .menu-toggle {
    display: none;
  }
}

.btn {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 720;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.btn-quiet {
  background: rgba(255, 255, 255, 0.46);
}

.btn-gold {
  border-color: rgba(185, 155, 82, 0.36);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(185, 155, 82, 0.12));
}

.progress-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(10, 11, 12, 0.04);
}

.progress-line span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--silver));
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 122px 0 44px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-immersive {
  background: #f7f5ef;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 46%, rgba(108, 91, 50, 0.18), transparent 38rem),
    linear-gradient(90deg, rgba(248, 249, 247, 0.94) 0%, rgba(248, 249, 247, 0.8) 25%, rgba(248, 249, 247, 0.18) 56%, rgba(248, 249, 247, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(248, 249, 247, 0.02) 54%, rgba(248, 249, 247, 0.76) 100%);
}

.hero-tone {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(248, 249, 247, 0) 0%, rgba(248, 249, 247, 0.68) 95%),
    repeating-linear-gradient(90deg, rgba(10, 11, 12, 0.025) 0, rgba(10, 11, 12, 0.025) 1px, transparent 1px, transparent 56px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.46));
}

.hero-immersive-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
}

.eyebrow,
.kicker,
.micro,
.tag,
.label {
  color: var(--gold-deep);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--silver));
}

.hero h1 {
  max-width: 640px;
  margin: 18px 0 18px;
  color: var(--graphite);
  font-size: clamp(42px, 4.6vw, 64px);
  font-weight: 760;
  line-height: 1.08;
}

.hero-subtitle {
  display: block;
  margin-top: 13px;
  color: #4e4a43;
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 520;
  line-height: 1.35;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 0;
  color: #5f5a53;
  font-size: 17px;
  line-height: 1.92;
}

.hero-tags,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.pill-row span,
.status-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: #625d55;
  padding: 8px 13px;
  font-size: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(920px, 100%);
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: -18px;
}

.proof-card,
.card,
.feature-card,
.quote-panel,
.page-panel,
.media-card,
.notice-card,
.job-card,
.admin-card,
.footer-card,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.proof-card,
.card,
.feature-card,
.page-panel,
.media-card,
.notice-card,
.job-card,
.admin-card,
.footer-card,
.timeline-item {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.proof-card {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
}

.proof-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.45;
}

.proof-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.65s ease-in-out, filter 1.65s ease-in-out;
  transform: scale(1.026);
  filter: saturate(0.98) brightness(0.98);
}

.hero-slide.is-active {
  opacity: 1;
  filter: saturate(1) brightness(1);
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: center;
  animation: heroDrift 13.8s ease-in-out infinite alternate;
  animation-delay: calc(var(--slide-index, 0) * -3.6s);
  will-change: transform;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.08) brightness(0.99);
}

.hero-side-panel {
  max-width: 360px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(10, 11, 12, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-side-panel::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 155, 82, 0.72), transparent);
  opacity: 0;
  transform: scaleX(0.34);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-side-panel:hover,
.hero-side-panel:focus-within {
  transform: translateY(-4px);
  border-color: rgba(185, 155, 82, 0.34);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(10, 11, 12, 0.09);
}

.hero-side-panel:hover::after,
.hero-side-panel:focus-within::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-side-panel strong {
  display: block;
  margin: 0 0 8px;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.48;
  overflow-wrap: anywhere;
}

.hero-side-panel p {
  margin: 0;
  font-size: 13px;
  line-height: 1.78;
}

.hero-dots {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 11, 12, 0.22);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--gold);
}

.section {
  padding: 98px 0 0;
}

.section-tight {
  padding-top: 68px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}

.section-head > div:only-child {
  grid-column: 1 / -1;
  max-width: 860px;
}

.section-head h2,
.page-hero h1 {
  margin: 13px 0 0;
  color: var(--graphite);
  font-size: clamp(27px, 2.35vw, 36px);
  line-height: 1.24;
  font-weight: 690;
}

.section-head h2 span,
.text-gold {
  color: var(--gold-deep);
}

.section-desc {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.86;
}

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

.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,
.feature-card,
.page-panel,
.media-card,
.notice-card,
.job-card,
.admin-card,
.timeline-item {
  padding: 24px;
}

.card h3,
.feature-card h3,
.page-panel h3,
.media-card h3,
.notice-card h3,
.job-card h3,
.admin-card h3 {
  margin-bottom: 10px;
  color: var(--graphite);
  font-size: 19px;
  line-height: 1.34;
  font-weight: 690;
}

.card p,
.feature-card p,
.page-panel p,
.media-card p,
.notice-card p,
.job-card p,
.admin-card p {
  margin-bottom: 0;
}

.chapter-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  position: relative;
  z-index: 3;
}

.chapter-card {
  min-height: 112px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.chapter-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 155, 82, 0.72), transparent);
  opacity: 0;
  transform: scaleX(0.34);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.chapter-card:hover,
.chapter-card:focus-visible,
.proof-card:hover,
.card:hover,
.footer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 155, 82, 0.34);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(10, 11, 12, 0.09);
  outline: none;
}

.chapter-card:hover::after,
.chapter-card:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.chapter-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}

.chapter-card strong {
  display: block;
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.46;
  overflow-wrap: anywhere;
}

.strategy-board {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 18px;
}

.vision-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.vision-story-reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.lux-visual {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(10, 11, 12, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ece9e2;
  box-shadow: var(--shadow);
}

.lux-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--light-x, 18%) var(--light-y, 18%), rgba(255, 255, 255, 0.52), transparent 24rem),
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 38%, rgba(255, 255, 255, 0.4) 50%, transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(10, 11, 12, 0.08));
  background-size: 100% 100%, 220% 100%, 100% 100%;
  animation: visualLightSweep 8.4s ease-in-out infinite alternate;
}

.lux-visual::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 155, 82, 0.64), transparent);
  animation: lineScan 3.8s ease-in-out infinite;
}

.lux-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.015);
  filter: saturate(0.94) contrast(0.99) brightness(1.02);
  transition: transform 1.2s ease;
}

.lux-visual {
  isolation: isolate;
}

.lux-visual .brand-watermark {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 4;
  width: 92px;
  opacity: 0.72;
}

.lux-visual:hover img {
  transform: scale(1.035);
}

.lux-visual img {
  animation: imageBreath 9s ease-in-out infinite alternate;
}

.lux-visual:hover::before {
  --light-x: 72%;
  --light-y: 26%;
}

.right-preserve-visual img {
  object-position: right center;
  transform-origin: right center;
  animation-name: imageBreathRight;
}

.product-matrix-visual {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 255, 255, 0.7), transparent 26rem),
    #ece9e2;
}

.product-vision .product-matrix-visual {
  min-height: 0;
}

.product-matrix-visual img {
  min-height: 0;
  object-fit: cover;
  object-position: 60% 58%;
  transform-origin: center;
  animation-name: imageBreathProduct;
}

.growth-lift-visual::before {
  background:
    radial-gradient(ellipse at 52% 35%, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.36) 18%, transparent 42%),
    radial-gradient(ellipse at 50% 92%, rgba(255, 255, 255, 0.34) 0%, rgba(244, 230, 190, 0.22) 18%, transparent 43%),
    linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.02) 22%, rgba(255, 255, 255, 0.32) 48%, rgba(255, 255, 255, 0.02) 78%, transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(10, 11, 12, 0.07));
  background-size: 100% 100%, 100% 100%, 100% 230%, 100% 100%;
  animation: verticalLightBloom 7.2s cubic-bezier(0.42, 0, 0.22, 1) infinite;
}

.growth-lift-visual::after {
  left: 24%;
  right: 24%;
  bottom: 6%;
  height: 72%;
  background:
    radial-gradient(ellipse at 50% 10%, rgba(255, 255, 255, 0.82), rgba(248, 236, 204, 0.34) 14%, transparent 33%),
    linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.08) 22%, rgba(255, 255, 255, 0.58) 51%, rgba(255, 255, 255, 0.1) 78%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.48) 50%, transparent 100%);
  filter: blur(10px);
  opacity: 0;
  transform-origin: 50% 88%;
  animation: upwardLightConverge 6.4s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.growth-lift-visual img {
  animation-duration: 12.5s;
}

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

.story-copy h3 {
  margin: 14px 0 14px;
  color: var(--graphite);
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.22;
  font-weight: 690;
}

.story-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.story-points,
.category-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 24px;
}

.story-points span,
.category-line span {
  border: 1px solid rgba(10, 11, 12, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  padding: 8px 12px;
  color: #625d55;
  font-size: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.product-vision .lux-visual {
  min-height: 560px;
}

.architecture-map {
  min-height: 500px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(242, 241, 237, 0.86)),
    repeating-linear-gradient(135deg, rgba(10, 11, 12, 0.035) 0, rgba(10, 11, 12, 0.035) 1px, transparent 1px, transparent 20px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.strategy-orbit {
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.26) 28%, transparent 45%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(242, 241, 237, 0.86)),
    repeating-linear-gradient(135deg, rgba(10, 11, 12, 0.035) 0, rgba(10, 11, 12, 0.035) 1px, transparent 1px, transparent 20px);
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 47%;
  border: 1px solid rgba(185, 155, 82, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(68deg);
  pointer-events: none;
}

.orbit-ring::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(185, 155, 82, 0.92);
  box-shadow: 0 0 24px rgba(185, 155, 82, 0.38);
}

.orbit-ring-a {
  width: 520px;
  height: 520px;
  animation: orbitSpin 14s linear infinite;
}

.orbit-ring-b {
  width: 390px;
  height: 390px;
  border-color: rgba(10, 11, 12, 0.1);
  animation: orbitSpin 18s linear infinite reverse;
}

.orbit-ring-a::after {
  left: 84%;
  top: 50%;
}

.orbit-ring-b::after {
  left: 18%;
  top: 50%;
  background: rgba(96, 104, 112, 0.76);
}

.architecture-core {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 300px;
  min-height: 156px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
  border: 1px solid rgba(10, 11, 12, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), var(--shadow-soft);
}

.architecture-core strong {
  color: var(--graphite);
  font-size: 23px;
  line-height: 1.3;
}

.architecture-node {
  position: absolute;
  width: 220px;
  padding: 17px;
  border: 1px solid rgba(10, 11, 12, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(10px);
}

.architecture-node h3 {
  margin: 7px 0 6px;
  color: var(--graphite);
  font-size: 17px;
}

.architecture-node p {
  margin: 0;
  font-size: 13px;
  line-height: 1.72;
}

.node-left {
  left: 24px;
  top: 88px;
}

.node-right {
  right: 24px;
  top: 88px;
}

.node-bottom-left {
  left: 78px;
  bottom: 44px;
}

.node-bottom-right {
  right: 78px;
  bottom: 44px;
}

.strategy-field {
  min-height: 580px;
  background:
    radial-gradient(circle at 50% 47%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.36) 27%, transparent 52%),
    radial-gradient(circle at 50% 48%, rgba(214, 185, 110, 0.2), transparent 22rem),
    radial-gradient(circle at 18% 18%, rgba(185, 155, 82, 0.16), transparent 18rem),
    radial-gradient(circle at 84% 78%, rgba(168, 160, 150, 0.18), transparent 21rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(236, 235, 231, 0.9));
  overflow: hidden;
  isolation: isolate;
}

.strategy-field::before,
.strategy-field::after {
  content: "";
  position: absolute;
  inset: 7%;
  z-index: 1;
  border: 0;
  border-radius: 50%;
  background:
    conic-gradient(from 220deg,
      transparent 0 8%,
      rgba(185, 155, 82, 0.08) 12%,
      rgba(214, 185, 110, 0.48) 16%,
      rgba(255, 255, 255, 0.86) 20%,
      rgba(185, 155, 82, 0.2) 25%,
      transparent 35% 58%,
      rgba(168, 160, 150, 0.18) 64%,
      rgba(255, 255, 255, 0.62) 69%,
      transparent 78% 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 34px), #000 calc(100% - 32px), #000 calc(100% - 7px), transparent calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 34px), #000 calc(100% - 32px), #000 calc(100% - 7px), transparent calc(100% - 2px));
  filter: drop-shadow(0 0 22px rgba(185, 155, 82, 0.16));
  opacity: 0.88;
  transform: scaleY(0.58) rotate(-9deg);
  animation: strategyRibbonOrbit 18s linear infinite;
}

.strategy-field::after {
  inset: 16%;
  background:
    conic-gradient(from 70deg,
      transparent 0 16%,
      rgba(255, 255, 255, 0.7) 23%,
      rgba(185, 155, 82, 0.34) 29%,
      transparent 40% 62%,
      rgba(168, 160, 150, 0.18) 70%,
      rgba(255, 255, 255, 0.56) 76%,
      transparent 86% 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 24px), #000 calc(100% - 22px), #000 calc(100% - 5px), transparent calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 24px), #000 calc(100% - 22px), #000 calc(100% - 5px), transparent calc(100% - 1px));
  opacity: 0.7;
  transform: scaleY(0.62) rotate(18deg);
  animation: strategyRibbonOrbitInner 22s linear infinite reverse;
}

.strategy-core-mark {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: 4;
  width: min(330px, 62%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(185, 155, 82, 0.26);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.94), rgba(248, 249, 247, 0.62) 56%, rgba(185, 155, 82, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(236, 235, 231, 0.42));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 0 38px rgba(255, 255, 255, 0.72),
    0 28px 70px rgba(10, 11, 12, 0.1),
    0 0 80px rgba(185, 155, 82, 0.16);
}

.strategy-core-mark span {
  color: var(--gold-deep);
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 900;
}

.strategy-core-mark strong {
  max-width: 220px;
  color: var(--graphite);
  font-size: 24px;
  line-height: 1.3;
}

.strategy-core-mark small {
  color: var(--muted);
  font-size: 12px;
}

.strategy-flow {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: 2;
  width: 82%;
  height: 82%;
  transform: translate(-50%, -50%) rotate(var(--rotate, 0deg));
  border: 0;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg,
      transparent 0 7%,
      rgba(255, 255, 255, 0.76) 12%,
      rgba(214, 185, 110, 0.46) 18%,
      rgba(185, 155, 82, 0.12) 25%,
      transparent 36% 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 28px), #000 calc(100% - 25px), #000 calc(100% - 8px), transparent calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 28px), #000 calc(100% - 25px), #000 calc(100% - 8px), transparent calc(100% - 2px));
  filter: drop-shadow(0 0 18px rgba(185, 155, 82, 0.2));
  opacity: 0.82;
  animation: strategyRibbonFlow 13s linear infinite;
}

.flow-b {
  --rotate: 62deg;
  width: 70%;
  height: 70%;
  background:
    conic-gradient(from 40deg,
      transparent 0 16%,
      rgba(168, 160, 150, 0.18) 22%,
      rgba(255, 255, 255, 0.72) 28%,
      rgba(185, 155, 82, 0.28) 34%,
      transparent 48% 100%);
  animation-duration: 16s;
  animation-direction: reverse;
}

.flow-c {
  --rotate: -58deg;
  width: 92%;
  height: 92%;
  background:
    conic-gradient(from 120deg,
      transparent 0 38%,
      rgba(10, 11, 12, 0.08) 45%,
      rgba(255, 255, 255, 0.58) 51%,
      rgba(214, 185, 110, 0.24) 57%,
      transparent 70% 100%);
  opacity: 0.62;
  animation-duration: 20s;
}

.strategy-pill {
  position: absolute;
  z-index: 4;
  min-width: 132px;
  padding: 10px 14px;
  border: 1px solid rgba(185, 155, 82, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--graphite);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 760;
  text-align: center;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  animation: strategyPillFloat 5.8s ease-in-out infinite alternate;
}

.strategy-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.72), transparent 38%),
    linear-gradient(115deg, transparent 10%, rgba(255, 255, 255, 0.36), transparent 60%);
  background-size: 100% 100%, 210% 100%;
  opacity: 0.54;
  animation: visualLightSweep 6.8s ease-in-out infinite alternate;
}

.strategy-pill::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(185, 155, 82, 0.72);
  box-shadow: 0 0 18px rgba(185, 155, 82, 0.46);
  transform: translate(-50%, -50%);
  opacity: 0.76;
}

.pill-product { left: 50%; top: 9%; transform: translateX(-50%); animation-name: strategyPillFloatCenter; animation-delay: 0.1s; }
.pill-ecommerce { right: 7%; top: 22%; animation-delay: 0.7s; }
.pill-retail { right: 8%; bottom: 22%; animation-delay: 1.4s; }
.pill-service { left: 50%; bottom: 8%; transform: translateX(-50%); animation-name: strategyPillFloatCenter; animation-delay: 2.1s; }
.pill-ai { left: 8%; bottom: 22%; animation-delay: 1.1s; }
.pill-supply { left: 7%; top: 22%; animation-delay: 1.8s; }

.strategy-orb {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(185, 155, 82, 0.9);
  box-shadow: 0 0 24px rgba(185, 155, 82, 0.4);
  animation: floatSoft 3.4s ease-in-out infinite alternate;
}

.orb-a { left: 22%; top: 35%; }
.orb-b { right: 25%; top: 62%; animation-delay: 0.8s; }
.orb-c { left: 58%; bottom: 18%; animation-delay: 1.2s; }

.side-stack {
  display: grid;
  gap: 16px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.image-panel {
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #e7e5df;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.98);
  animation: imageBreath 10s ease-in-out infinite alternate;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.42), transparent 18rem),
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 44%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(10, 11, 12, 0.14));
  background-size: 100% 100%, 220% 100%, 100% 100%;
  animation: visualLightSweep 9.2s ease-in-out infinite alternate;
}

.image-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 16px;
  border: 1px solid rgba(10, 11, 12, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.image-note strong {
  display: block;
  color: var(--graphite);
}

.image-note small {
  color: var(--muted);
  line-height: 1.65;
}

.placeholder-panel {
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(236, 235, 231, 0.84)),
    repeating-linear-gradient(135deg, rgba(10, 11, 12, 0.04) 0, rgba(10, 11, 12, 0.04) 1px, transparent 1px, transparent 16px);
  box-shadow: var(--shadow-soft);
}

.placeholder-panel strong {
  display: block;
  margin: 10px auto;
  max-width: 420px;
  color: var(--graphite);
  font-size: 24px;
  line-height: 1.4;
}

.placeholder-panel p {
  max-width: 480px;
  margin: 0 auto;
  font-size: 13px;
}

.ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 18px;
}

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

.tab-button {
  width: 100%;
  text-align: left;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.tab-button:hover {
  transform: translateY(-2px);
}

.tab-button.is-active {
  border-color: rgba(185, 155, 82, 0.48);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.tab-button strong {
  display: block;
  color: var(--graphite);
  font-size: 16px;
}

.tab-button span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.tab-panel {
  min-height: 520px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(242, 241, 237, 0.88)),
    repeating-linear-gradient(0deg, rgba(10, 11, 12, 0.025) 0, rgba(10, 11, 12, 0.025) 1px, transparent 1px, transparent 38px);
  box-shadow: var(--shadow);
  display: grid;
  align-content: space-between;
  gap: 20px;
}

.panel-visual {
  min-height: 280px;
  border: 1px solid rgba(10, 11, 12, 0.08);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(248, 249, 247, 0.88), rgba(248, 249, 247, 0.16)),
    url("../assets/images/hero-3-ai-native-v2-opt.webp") center / cover;
  overflow: hidden;
  position: relative;
}

.panel-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(10, 11, 12, 0.08));
  pointer-events: none;
}

.panel-visual > div {
  position: relative;
  z-index: 1;
  max-width: 460px;
  padding: 20px;
  border: 1px solid rgba(10, 11, 12, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
}

.panel-visual strong {
  display: block;
  margin-top: 8px;
  color: var(--graphite);
  font-size: 24px;
  line-height: 1.35;
}

.panel-visual small {
  display: block;
  max-width: 430px;
  margin: 10px auto 0;
  color: var(--muted);
}

.panel-copy h3 {
  margin: 10px 0;
  color: var(--graphite);
  font-size: 28px;
  line-height: 1.28;
}

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

.metric-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #5f5a53;
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: 18px;
}

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

.product-card {
  min-height: 176px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 88%, rgba(185, 155, 82, 0.16), transparent 9rem),
    rgba(255, 255, 255, 0.68);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-card::after,
.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.product-card::after {
  inset: 0;
  z-index: 1;
  opacity: 0;
  background:
    radial-gradient(circle at 76% 80%, rgba(255, 255, 255, 0.48), transparent 8rem),
    linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  background-size: 100% 100%, 220% 100%;
  transition: opacity 0.2s ease;
}

.product-card h3,
.product-card p,
.product-card-header {
  position: relative;
  z-index: 1;
}

.product-card:hover,
.product-card.is-active,
.product-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(185, 155, 82, 0.52);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.product-card:hover::after,
.product-card.is-active::after,
.product-card:focus-visible::after {
  opacity: 1;
  animation: visualLightSweep 5.8s ease-in-out infinite alternate;
}

.product-card-image {
  position: absolute;
  right: -34px;
  bottom: -42px;
  z-index: 0;
  width: 70%;
  max-width: 180px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.7;
  mix-blend-mode: multiply;
  filter: saturate(0.95) contrast(1.02) brightness(1.04);
  transform: rotate(-4deg) scale(1.02);
  transition: opacity 0.22s ease, transform 0.32s ease, filter 0.22s ease;
}

.product-card:hover .product-card-image,
.product-card.is-active .product-card-image,
.product-card:focus-visible .product-card-image {
  opacity: 0.86;
  transform: rotate(-2deg) scale(1.08);
  filter: saturate(1.04) contrast(1.04) brightness(1.04);
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted-2);
  font-size: 12px;
}

.product-card h3 {
  margin-bottom: 8px;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.32;
}

.product-card p {
  margin: 0;
  font-size: 13px;
}

.product-detail {
  min-height: 520px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.detail-visual {
  min-height: 270px;
  margin-bottom: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(185, 155, 82, 0.1), rgba(168, 160, 150, 0.13)),
    repeating-linear-gradient(135deg, rgba(10, 11, 12, 0.038) 0, rgba(10, 11, 12, 0.038) 1px, transparent 1px, transparent 16px);
}

.detail-visual > div {
  position: relative;
  z-index: 2;
  max-width: 400px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
}

.detail-product-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(0.98) contrast(1.02) brightness(1.02);
  transform: scale(1.02);
  transition: opacity 0.24s ease, transform 0.42s ease;
}

.detail-visual:hover .detail-product-image {
  transform: scale(1.045);
}

.product-visual {
  min-height: 310px;
  background:
    radial-gradient(circle at 78% 72%, rgba(185, 155, 82, 0.22), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(236, 235, 231, 0.72));
}

.product-visual::before {
  inset: 0;
  z-index: 2;
  opacity: 0.8;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.58), transparent 14rem),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.28) 46%, transparent 62%);
  background-size: 100% 100%, 220% 100%;
  animation: visualLightSweep 8.8s ease-in-out infinite alternate;
}

.product-visual::after {
  inset: auto 28px 22px 28px;
  z-index: 2;
  height: 1px;
  opacity: 0.74;
  background: linear-gradient(90deg, transparent, rgba(185, 155, 82, 0.7), transparent);
  animation: lineScan 4s ease-in-out infinite;
}

.product-card.product-patch::before,
.product-visual.product-patch::before {
  border-radius: 16px 38px 16px 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(185, 155, 82, 0.22)),
    linear-gradient(90deg, transparent 48%, rgba(10, 11, 12, 0.12) 48%, rgba(10, 11, 12, 0.12) 52%, transparent 52%);
}

.product-card.product-patch::after,
.product-visual.product-patch::after {
  border-radius: 18px;
  width: 72px;
  height: 40px;
  transform: rotate(11deg);
  background: rgba(255, 255, 255, 0.44);
}

.product-visual.product-patch::after {
  transform: translateX(-50%) rotate(11deg);
}

.product-card.product-cream::before,
.product-card.product-spray::before,
.product-card.product-device::before,
.product-card.product-appliance::before,
.product-card.product-nutrition::before,
.product-card.product-drink::before,
.product-card.product-food::before,
.product-card.product-tool::before,
.product-visual.product-cream::before,
.product-visual.product-spray::before,
.product-visual.product-device::before,
.product-visual.product-appliance::before,
.product-visual.product-nutrition::before,
.product-visual.product-drink::before,
.product-visual.product-food::before,
.product-visual.product-tool::before {
  border-radius: 24px;
}

.product-card.product-cream::before {
  width: 72px;
  height: 132px;
  right: 26px;
  bottom: -24px;
  transform: rotate(8deg);
  border-radius: 18px 18px 30px 30px;
}

.product-card.product-spray::before {
  width: 58px;
  height: 138px;
  border-radius: 18px 18px 10px 10px;
  right: 34px;
  bottom: -28px;
  transform: rotate(-4deg);
}

.product-card.product-spray::after {
  width: 42px;
  height: 22px;
  right: 44px;
  bottom: 120px;
  border-radius: 8px 8px 2px 2px;
  background: rgba(10, 11, 12, 0.08);
}

.product-card.product-tool::before {
  width: 150px;
  height: 62px;
  border-radius: 999px 42px 999px 42px;
  transform: rotate(-18deg);
}

.product-card.product-tool::after {
  width: 72px;
  height: 28px;
  right: 18px;
  bottom: 26px;
  border-radius: 999px;
  transform: rotate(22deg);
}

.product-card.product-device::before {
  width: 118px;
  height: 108px;
  border-radius: 30px;
  transform: rotate(6deg);
}

.product-card.product-device::after {
  width: 44px;
  height: 44px;
  right: 44px;
  bottom: 24px;
  background: radial-gradient(circle, rgba(185, 155, 82, 0.24), transparent 62%);
}

.product-card.product-appliance::before {
  width: 116px;
  height: 132px;
  border-radius: 26px 26px 16px 16px;
}

.product-card.product-appliance::after {
  width: 74px;
  height: 38px;
  right: 20px;
  bottom: 74px;
  border-radius: 10px;
  background: rgba(10, 11, 12, 0.06);
}

.product-card.product-nutrition::before {
  width: 86px;
  height: 128px;
  border-radius: 24px 24px 14px 14px;
}

.product-card.product-nutrition::after {
  width: 54px;
  height: 22px;
  right: 37px;
  bottom: 114px;
  border-radius: 999px;
  background: rgba(185, 155, 82, 0.18);
}

.product-card.product-drink::before {
  width: 72px;
  height: 142px;
  border-radius: 26px 26px 12px 12px;
}

.product-card.product-drink::after {
  width: 42px;
  height: 28px;
  right: 47px;
  bottom: 132px;
  border-radius: 10px 10px 4px 4px;
  background: rgba(10, 11, 12, 0.08);
}

.product-card.product-food::before {
  width: 150px;
  height: 104px;
  border-radius: 14px 30px 14px 30px;
}

.product-card.product-food::after {
  width: 82px;
  height: 36px;
  right: 14px;
  bottom: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

.product-visual.product-cream::before {
  width: 110px;
  height: 210px;
  border-radius: 28px 28px 42px 42px;
  transform: translateX(-50%) rotate(5deg);
}

.product-visual.product-spray::before {
  width: 98px;
  height: 225px;
  border-radius: 28px 28px 16px 16px;
  transform: translateX(-50%) rotate(-3deg);
}

.product-visual.product-spray::after {
  width: 70px;
  height: 32px;
  bottom: 242px;
  border-radius: 10px 10px 2px 2px;
  background: rgba(10, 11, 12, 0.08);
}

.product-visual.product-tool::before {
  width: 280px;
  height: 94px;
  border-radius: 999px 56px 999px 56px;
  transform: translateX(-50%) rotate(-16deg);
}

.product-visual.product-device::before {
  width: 220px;
  height: 190px;
  border-radius: 42px;
  transform: translateX(-50%) rotate(4deg);
}

.product-visual.product-device::after {
  width: 86px;
  height: 86px;
  bottom: 74px;
  background: radial-gradient(circle, rgba(185, 155, 82, 0.28), transparent 62%);
}

.product-visual.product-appliance::before {
  width: 185px;
  height: 230px;
  border-radius: 36px 36px 22px 22px;
  transform: translateX(-50%) rotate(-2deg);
}

.product-visual.product-appliance::after {
  width: 112px;
  height: 62px;
  bottom: 150px;
  border-radius: 14px;
  background: rgba(10, 11, 12, 0.06);
}

.product-visual.product-nutrition::before {
  width: 138px;
  height: 220px;
  border-radius: 34px 34px 18px 18px;
  transform: translateX(-50%) rotate(4deg);
}

.product-visual.product-nutrition::after {
  width: 92px;
  height: 38px;
  bottom: 216px;
  border-radius: 999px;
  background: rgba(185, 155, 82, 0.2);
}

.product-visual.product-drink::before {
  width: 122px;
  height: 232px;
  border-radius: 38px 38px 18px 18px;
  transform: translateX(-50%) rotate(-3deg);
}

.product-visual.product-drink::after {
  width: 72px;
  height: 40px;
  bottom: 240px;
  border-radius: 12px 12px 4px 4px;
  background: rgba(10, 11, 12, 0.08);
}

.product-visual.product-food::before {
  width: 270px;
  height: 158px;
  border-radius: 22px 46px 22px 46px;
  transform: translateX(-50%) rotate(-8deg);
}

.product-visual.product-food::after {
  width: 134px;
  height: 56px;
  bottom: 82px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.product-card::after {
  inset: 0;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  transform: none;
  background:
    radial-gradient(circle at 76% 80%, rgba(255, 255, 255, 0.48), transparent 8rem),
    linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  background-size: 100% 100%, 220% 100%;
}

.product-card.product-patch::after,
.product-card.product-cream::after,
.product-card.product-spray::after,
.product-card.product-tool::after,
.product-card.product-device::after,
.product-card.product-appliance::after,
.product-card.product-nutrition::after,
.product-card.product-drink::after,
.product-card.product-food::after {
  inset: 0;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  transform: none;
  background:
    radial-gradient(circle at 76% 80%, rgba(255, 255, 255, 0.48), transparent 8rem),
    linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  background-size: 100% 100%, 220% 100%;
}

.product-visual::before,
.product-visual.product-patch::before,
.product-visual.product-cream::before,
.product-visual.product-spray::before,
.product-visual.product-tool::before,
.product-visual.product-device::before,
.product-visual.product-appliance::before,
.product-visual.product-nutrition::before,
.product-visual.product-drink::before,
.product-visual.product-food::before {
  inset: 0;
  left: auto;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  transform: none;
  box-shadow: none;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.58), transparent 14rem),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.28) 46%, transparent 62%);
  background-size: 100% 100%, 220% 100%;
}

.product-visual::after,
.product-visual.product-patch::after,
.product-visual.product-spray::after,
.product-visual.product-device::after,
.product-visual.product-appliance::after,
.product-visual.product-nutrition::after,
.product-visual.product-drink::after,
.product-visual.product-food::after {
  inset: auto 28px 22px 28px;
  left: auto;
  right: 28px;
  bottom: 22px;
  width: auto;
  height: 1px;
  border: 0;
  border-radius: 0;
  transform: none;
  background: linear-gradient(90deg, transparent, rgba(185, 155, 82, 0.7), transparent);
}

.detail-visual strong {
  display: block;
  margin-top: 8px;
  color: var(--graphite);
  font-size: 24px;
}

.detail-visual small {
  display: block;
  max-width: 380px;
  margin: 10px auto 0;
  color: var(--muted);
}

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

.detail-meta div {
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
}

.detail-meta strong {
  display: block;
  margin-bottom: 6px;
  color: var(--graphite);
  font-size: 13px;
}

.detail-meta p {
  margin: 0;
  font-size: 13px;
}

.growth-map {
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  gap: 18px;
  align-items: stretch;
}

.growth-map-visual {
  grid-template-columns: minmax(220px, 0.7fr) minmax(420px, 1.25fr) minmax(220px, 0.7fr);
}

.growth-node,
.growth-center {
  min-height: 286px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.growth-node h3,
.growth-center h3 {
  color: var(--graphite);
  font-size: 23px;
  line-height: 1.26;
}

.growth-center {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(185, 155, 82, 0.12)),
    repeating-linear-gradient(135deg, rgba(10, 11, 12, 0.04) 0, rgba(10, 11, 12, 0.04) 1px, transparent 1px, transparent 18px);
}

.retail-growth-map {
  position: relative;
  isolation: isolate;
}

.retail-growth-map::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 50%;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 155, 82, 0.58), rgba(255, 255, 255, 0.72), rgba(185, 155, 82, 0.52), transparent);
  box-shadow: 0 0 22px rgba(185, 155, 82, 0.2);
}

.retail-growth-center {
  position: relative;
  overflow: hidden;
}

.retail-growth-center::before,
.retail-growth-center::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(185, 155, 82, 0.18);
  border-radius: 50%;
  animation: retailPulse 6s ease-in-out infinite;
}

.retail-growth-center::after {
  inset: 46px;
  border-color: rgba(255, 255, 255, 0.56);
  animation-delay: 1.6s;
}

.retail-center-glow {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.96), rgba(214, 185, 110, 0.42) 42%, rgba(185, 155, 82, 0.08) 72%, transparent);
  box-shadow: 0 0 42px rgba(185, 155, 82, 0.32);
  animation: retailGlowFloat 5.6s ease-in-out infinite alternate;
}

.retail-partner-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.retail-partner-strip article {
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 12%, rgba(214, 185, 110, 0.16), transparent 8rem),
    rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.retail-partner-strip article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.3), transparent 58%);
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity 0.24s ease, transform 0.8s ease;
}

.retail-partner-strip article:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 155, 82, 0.34);
  box-shadow: 0 18px 44px rgba(10, 11, 12, 0.08);
}

.retail-partner-strip article:hover::after {
  opacity: 1;
  transform: translateX(28%);
}

.retail-partner-strip span,
.retail-partner-strip strong,
.retail-partner-strip p {
  position: relative;
  z-index: 1;
}

.retail-partner-strip span {
  color: var(--gold-deep);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 760;
}

.retail-partner-strip strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.36;
}

.retail-partner-strip p {
  margin: 0;
  font-size: 13px;
  line-height: 1.78;
}

.retail-ecosystem-panel {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.98), transparent 10rem),
    radial-gradient(ellipse at 50% 84%, rgba(185, 155, 82, 0.16), transparent 18rem),
    radial-gradient(circle at 22% 78%, rgba(185, 155, 82, 0.18), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(236, 235, 231, 0.82)),
    repeating-linear-gradient(90deg, rgba(10, 11, 12, 0.035) 0, rgba(10, 11, 12, 0.035) 1px, transparent 1px, transparent 42px);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.retail-ecosystem-panel::before,
.retail-ecosystem-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.retail-ecosystem-panel::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.34) 46%, transparent 62%),
    radial-gradient(circle at 50% 45%, rgba(214, 185, 110, 0.14), transparent 18rem);
  background-size: 230% 100%, 100% 100%;
  animation: visualLightSweep 9s ease-in-out infinite alternate;
}

.retail-ecosystem-panel::after {
  background-image:
    linear-gradient(rgba(10, 11, 12, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 11, 12, 0.032) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.5), transparent 66%);
}

.retail-orbit {
  width: min(430px, 82%);
  aspect-ratio: 1;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.retail-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(185, 155, 82, 0.24);
  border-radius: 50%;
  transform: rotateX(62deg);
  box-shadow: inset 0 0 28px rgba(185, 155, 82, 0.08);
}

.retail-ring-a {
  animation: orbitTilt 10s linear infinite;
}

.retail-ring-b {
  inset: 12%;
  border-color: rgba(10, 11, 12, 0.1);
  animation: orbitTilt 12s linear infinite reverse;
}

.retail-ring-c {
  inset: 24%;
  border-color: rgba(255, 255, 255, 0.72);
  animation: pulseRing 5.4s ease-in-out infinite;
}

.retail-dot {
  position: absolute;
  z-index: 3;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(185, 155, 82, 0.9);
  box-shadow: 0 0 26px rgba(185, 155, 82, 0.52);
}

.dot-a { left: 12%; top: 46%; animation: floatSoft 3.4s ease-in-out infinite alternate; }
.dot-b { right: 16%; top: 30%; animation: floatSoft 4.1s ease-in-out infinite alternate 0.8s; }
.dot-c { right: 23%; bottom: 18%; animation: floatSoft 3.7s ease-in-out infinite alternate 1.2s; }
.dot-d { left: 28%; bottom: 22%; animation: floatSoft 4.4s ease-in-out infinite alternate 1.6s; }

.retail-core {
  width: min(238px, 72%);
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(185, 155, 82, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 54px rgba(10, 11, 12, 0.08);
  text-align: center;
  display: grid;
  place-items: center;
}

.retail-core span {
  color: var(--gold-deep);
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 760;
}

.retail-core strong {
  color: var(--graphite);
  font-size: 21px;
  line-height: 1.32;
}

.retail-core p {
  margin: 0;
  font-size: 12px;
  line-height: 1.56;
}

.retail-flow {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  min-width: 166px;
  padding: 10px 14px;
  border: 1px solid rgba(185, 155, 82, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--graphite);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 780;
  text-align: center;
}

.flow-online {
  left: 24px;
}

.flow-offline {
  right: 24px;
}

.growth-center-image {
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  position: relative;
  background: #ece9e2;
}

.growth-center-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: imageBreath 10s ease-in-out infinite alternate;
}

.growth-center-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(10, 11, 12, 0.18)),
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.24), transparent 28rem);
}

.growth-center-image > div {
  position: relative;
  z-index: 2;
  margin: 22px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(12px);
}

.growth-panorama {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ece9e2;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.growth-panorama img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04) brightness(0.98);
  animation: imageBreath 12s ease-in-out infinite alternate;
}

.growth-panorama::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.28), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(10, 11, 12, 0.22));
  pointer-events: none;
}

.growth-panorama::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  top: 16%;
  z-index: 2;
  height: 68%;
  border: 1px solid rgba(185, 155, 82, 0.28);
  border-bottom-color: rgba(255, 255, 255, 0.34);
  border-radius: 50% 50% 8% 8%;
  filter: drop-shadow(0 0 18px rgba(185, 155, 82, 0.22));
  animation: pulseRing 4.8s ease-in-out infinite;
}

.growth-stream {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  min-width: 190px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--graphite);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 780;
  text-align: center;
}

.stream-left { left: 26px; }
.stream-right { right: 26px; }

.growth-stream::before {
  content: "";
  position: absolute;
  bottom: 50%;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 155, 82, 0.78));
}

.stream-left::before {
  left: 100%;
  transform: rotate(-28deg);
  transform-origin: left center;
}

.stream-right::before {
  right: 100%;
  transform: rotate(28deg);
  transform-origin: right center;
}

.growth-mark {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: min(420px, calc(100% - 40px));
  text-align: center;
  color: var(--graphite);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.64);
}

.growth-mark strong {
  display: block;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.24;
  font-weight: 720;
}

.growth-mark small {
  display: block;
  margin-top: 8px;
  color: #5c5a55;
}

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

.media-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.36s ease,
    border-color 0.36s ease,
    box-shadow 0.36s ease,
    background 0.36s ease;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 8%, rgba(255, 255, 255, 0.32) 34%, transparent 52%),
    radial-gradient(circle at 18% 12%, rgba(214, 185, 110, 0.16), transparent 28%);
  opacity: 0;
  transform: translateX(-22%);
  transition: opacity 0.36s ease, transform 0.7s ease;
}

.media-card > * {
  position: relative;
  z-index: 2;
}

.media-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 155, 82, 0.28);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 56px rgba(10, 11, 12, 0.1);
}

.media-card:hover::before {
  opacity: 1;
  transform: translateX(18%);
}

.media-thumb {
  height: 180px;
  margin: -8px -8px 18px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e7e5df;
}

.media-thumb img,
.media-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.media-card:hover .media-thumb img,
.media-card:hover .media-thumb video {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.02) brightness(1.03);
}

.authority-cert-grid .media-thumb {
  position: relative;
  height: auto;
  min-height: 0;
  margin: -8px -8px 18px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.78);
}

.authority-cert-grid .media-card {
  cursor: default;
}

.authority-cert-grid .media-thumb::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 6px;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.34) 44%, transparent 62%),
    radial-gradient(circle at 72% 18%, rgba(214, 185, 110, 0.16), transparent 26%);
  opacity: 0;
  transform: translateX(-22%);
  transition: opacity 0.32s ease, transform 0.68s ease;
}

.authority-cert-grid .media-card:hover .media-thumb::after {
  opacity: 1;
  transform: translateX(20%);
}

.authority-cert-grid .media-thumb img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 6px;
}

.media-card .btn {
  margin-top: 18px;
}

.authority-cert-grid,
.authority-feature-grid,
.authority-video-grid {
  display: grid;
  gap: 16px;
}

.expert-advisor-panel,
.authority-expert-panel {
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 18%, rgba(214, 185, 110, 0.16), transparent 13rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(242, 241, 237, 0.74));
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.expert-advisor-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.expert-advisor-panel::before,
.authority-expert-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.34), transparent 58%),
    radial-gradient(circle at 12% 88%, rgba(255, 255, 255, 0.52), transparent 12rem);
  background-size: 220% 100%, 100% 100%;
  opacity: 0.82;
  animation: visualLightSweep 9.4s ease-in-out infinite alternate;
}

.expert-advisor-panel > *,
.authority-expert-panel > * {
  position: relative;
  z-index: 1;
}

.expert-identity-block {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.expert-badge-stack {
  display: grid;
  gap: 10px;
}

.expert-badge-stack span {
  min-width: 92px;
  padding: 10px 12px;
  border: 1px solid rgba(185, 155, 82, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: var(--gold-deep);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.42;
  text-align: center;
}

.expert-advisor-panel h2 {
  margin: 8px 0 8px;
  color: var(--graphite);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.1;
  font-weight: 720;
}

.expert-role {
  margin: 0;
  color: #59564f;
  font-size: 14px;
  line-height: 1.86;
}

.expert-advisor-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.expert-point-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.expert-point-row span {
  padding: 8px 12px;
  border: 1px solid rgba(185, 155, 82, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #5f5a53;
  font-size: 12px;
  font-weight: 700;
}

.authority-expert-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 24px;
  align-items: stretch;
  padding: 26px;
}

.authority-expert-panel h3 {
  margin: 10px 0 12px;
  color: var(--graphite);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.25;
}

.authority-expert-panel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.88;
}

.authority-expert-note {
  padding: 20px;
  border: 1px solid rgba(185, 155, 82, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  display: grid;
  align-content: center;
}

.authority-expert-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.36;
}

.research-proof-grid {
  align-items: stretch;
}

.research-proof-card {
  display: grid;
  align-content: start;
}

.research-proof-grid .media-thumb {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  margin: -8px -8px 20px;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.92), rgba(236, 235, 231, 0.64)),
    rgba(255, 255, 255, 0.72);
  display: grid;
  place-items: center;
}

.research-proof-grid .media-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.research-proof-grid .media-thumb-contain img {
  object-fit: contain;
}

.research-proof-grid .media-thumb-balanced img {
  object-fit: cover;
}

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

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

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

.authority-video-card {
  display: grid;
  align-content: start;
}

.authority-video-card video,
.endorsement-main video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: #0a0b0c;
  object-fit: cover;
}

.authority-video-card h3,
.endorsement-main h3 {
  margin-top: 18px;
}

.endorsement-tree {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 16px;
  align-items: start;
}

.endorsement-main {
  display: grid;
  align-content: start;
}

.endorsement-main video {
  aspect-ratio: 16 / 9;
}

.endorsement-main .label {
  margin-top: 18px;
}

.endorsement-branches {
  position: relative;
  display: grid;
  gap: 16px;
}

.endorsement-branches::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: -8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(185, 155, 82, 0), rgba(185, 155, 82, 0.42), rgba(185, 155, 82, 0));
}

.card .btn,
.page-panel .btn,
.job-card .btn,
.admin-card .btn {
  margin-top: 18px;
}

.job-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.job-card .status-pill {
  margin-bottom: 13px;
}

.job-card h3 {
  margin: 0 0 12px;
}

.job-card p {
  line-height: 1.82;
}

.job-card .btn {
  margin-top: 22px;
}

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

.notice-card {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 20px;
  align-items: center;
}

.notice-date {
  color: var(--muted-2);
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 760;
}

.notice-card h3 {
  margin-bottom: 6px;
}

.notice-card p {
  margin: 0;
  font-size: 14px;
}

.page-hero {
  padding: 132px 0 54px;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 34px;
  align-items: end;
}

.page-hero h1 {
  font-size: clamp(34px, 3.5vw, 48px);
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 17px;
}

.page-hero-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.page-hero-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--graphite);
  font-size: 20px;
}

.value-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--graphite);
  font-size: 24px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
}

.timeline-item span {
  color: var(--gold-deep);
  font-weight: 800;
}

.video-card video {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: #000;
}

.form-shell {
  display: grid;
  gap: 14px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 11, 12, 0.42);
  backdrop-filter: blur(10px);
}

.modal-backdrop.is-open {
  display: flex;
}

.job-modal {
  width: min(1160px, 100%);
  max-height: min(820px, calc(100vh - 48px));
  overflow: hidden;
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 241, 237, 0.94)),
    repeating-linear-gradient(90deg, rgba(10, 11, 12, 0.026) 0, rgba(10, 11, 12, 0.026) 1px, transparent 1px, transparent 48px);
  box-shadow: 0 28px 90px rgba(10, 11, 12, 0.28);
  outline: none;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--graphite);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.job-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  gap: 26px;
  align-items: start;
}

.job-modal h2 {
  margin: 12px 0 14px;
  color: var(--graphite);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.job-modal h3 {
  margin: 24px 0 10px;
  color: var(--graphite);
  font-size: 18px;
}

.job-modal ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.job-rich-scroll {
  max-height: min(620px, calc(100vh - 190px));
  overflow: auto;
  padding-right: 8px;
}

.job-rich-scroll::-webkit-scrollbar {
  width: 6px;
}

.job-rich-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(185, 155, 82, 0.34);
}

.job-rich-visual {
  min-height: 190px;
  margin: 20px 0 8px;
  padding: 22px;
  border: 1px solid rgba(185, 155, 82, 0.22);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  background:
    radial-gradient(circle at 64% 40%, rgba(185, 155, 82, 0.18), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(236, 235, 231, 0.78)),
    repeating-linear-gradient(90deg, rgba(10, 11, 12, 0.025) 0, rgba(10, 11, 12, 0.025) 1px, transparent 1px, transparent 42px);
}

.job-rich-visual span {
  color: var(--graphite);
  font-size: 18px;
  font-weight: 780;
}

.job-rich-visual small {
  max-width: 440px;
  color: var(--muted);
}

.job-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-link-list a,
.job-link-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--graphite);
  text-decoration: none;
  font-size: 13px;
}

.application-form {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  position: sticky;
  top: 0;
}

.careers-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(185, 155, 82, 0.14), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(248, 249, 247, 0.92));
}

.ai-page-hero {
  background:
    radial-gradient(circle at 72% 28%, rgba(185, 155, 82, 0.14), transparent 24rem),
    radial-gradient(circle at 84% 62%, rgba(96, 104, 112, 0.13), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(248, 249, 247, 0.94));
}

.ai-signal-card {
  overflow: hidden;
  position: relative;
}

.signal-lines {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.signal-lines span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(185, 155, 82, 0.12), rgba(185, 155, 82, 0.72), rgba(10, 11, 12, 0.12));
  animation: signalFlow 2.8s ease-in-out infinite alternate;
}

.signal-lines span:nth-child(2) {
  width: 72%;
  animation-delay: 0.35s;
}

.signal-lines span:nth-child(3) {
  width: 48%;
  animation-delay: 0.7s;
}

.ai-command {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.ai-system-visual {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.98), rgba(248, 249, 247, 0.5) 24%, rgba(236, 235, 231, 0.62) 62%),
    repeating-linear-gradient(90deg, rgba(10, 11, 12, 0.028) 0, rgba(10, 11, 12, 0.028) 1px, transparent 1px, transparent 42px);
  box-shadow: var(--shadow);
}

.ai-system-visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(185, 155, 82, 0.18);
  border-radius: 50%;
  animation: pulseRing 4s ease-in-out infinite;
}

.ai-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(10, 11, 12, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 430px;
  height: 430px;
  animation: orbitSpin 18s linear infinite;
}

.orbit-2 {
  width: 320px;
  height: 320px;
  border-color: rgba(185, 155, 82, 0.28);
  animation: orbitSpin 13s linear infinite reverse;
}

.orbit-3 {
  width: 210px;
  height: 210px;
  border-color: rgba(10, 11, 12, 0.08);
  animation: orbitSpin 9s linear infinite;
}

.ai-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  min-height: 150px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  border: 1px solid rgba(185, 155, 82, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.ai-core span {
  color: var(--gold-deep);
  font-family: var(--font-latin);
  font-weight: 900;
  font-size: 18px;
}

.ai-core strong {
  color: var(--graphite);
  font-size: 24px;
}

.ai-core small {
  color: var(--muted);
}

.ai-node {
  position: absolute;
  min-width: 108px;
  padding: 10px 13px;
  border: 1px solid rgba(10, 11, 12, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--graphite);
  text-align: center;
  font-size: 13px;
  font-weight: 760;
  box-shadow: var(--shadow-soft);
}

.ai-node-a {
  left: 16%;
  top: 20%;
}

.ai-node-b {
  right: 14%;
  top: 28%;
}

.ai-node-c {
  left: 18%;
  bottom: 22%;
}

.ai-node-d {
  right: 18%;
  bottom: 17%;
}

.ai-depth-space {
  min-height: 620px;
  border: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), rgba(248, 249, 247, 0.34) 28%, transparent 44%),
    radial-gradient(circle at 70% 24%, rgba(185, 155, 82, 0.2), transparent 18rem),
    linear-gradient(135deg, #f8f9f7 0%, #ecebe7 48%, #d9d8d2 100%);
  perspective: 920px;
  transform-style: preserve-3d;
  box-shadow: 0 32px 90px rgba(10, 11, 12, 0.12);
  isolation: isolate;
}

.ai-depth-space::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 36%, rgba(10, 11, 12, 0.1)),
    repeating-linear-gradient(90deg, rgba(10, 11, 12, 0.04) 0, rgba(10, 11, 12, 0.04) 1px, transparent 1px, transparent 68px);
  pointer-events: none;
}

.depth-grid {
  position: absolute;
  left: -18%;
  right: -18%;
  bottom: -24%;
  z-index: 0;
  height: 78%;
  transform: rotateX(68deg) translateZ(-120px);
  transform-origin: center bottom;
  background:
    linear-gradient(rgba(185, 155, 82, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 11, 12, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.06) 70%);
  animation: depthGridMove 3.8s linear infinite;
}

.depth-core {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: 4;
  width: min(280px, 58%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) translateZ(120px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  border: 1px solid rgba(185, 155, 82, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 32%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.66) 48%, rgba(185, 155, 82, 0.18)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(236, 235, 231, 0.34));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 28px 80px rgba(10, 11, 12, 0.14), 0 0 70px rgba(185, 155, 82, 0.22);
  animation: coreFloat 4.6s ease-in-out infinite alternate;
}

.depth-core span {
  color: var(--gold-deep);
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 900;
}

.depth-core strong {
  max-width: 190px;
  color: var(--graphite);
  font-size: 23px;
  line-height: 1.28;
}

.depth-core small {
  color: var(--muted);
  font-size: 11px;
}

.depth-object {
  position: absolute;
  z-index: 5;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--graphite);
  box-shadow: 0 18px 42px rgba(10, 11, 12, 0.1);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 780;
  white-space: nowrap;
  animation: depthDrift 5.8s ease-in-out infinite alternate;
}

.obj-a { left: 14%; top: 18%; transform: translateZ(180px); }
.obj-b { right: 12%; top: 22%; transform: translateZ(90px); animation-delay: 0.6s; }
.obj-c { left: 9%; bottom: 24%; transform: translateZ(60px); animation-delay: 1.1s; }
.obj-d { right: 10%; bottom: 20%; transform: translateZ(150px); animation-delay: 1.7s; }
.obj-e { left: 50%; bottom: 11%; transform: translateX(-50%) translateZ(220px); animation-delay: 2.2s; }

.depth-particle {
  position: absolute;
  z-index: 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(185, 155, 82, 0.86);
  box-shadow: 0 0 20px rgba(185, 155, 82, 0.5);
  animation: particleDepth 4.4s linear infinite;
}

.p1 { left: 22%; top: 26%; animation-delay: 0s; }
.p2 { left: 70%; top: 30%; animation-delay: 0.8s; }
.p3 { left: 34%; top: 70%; animation-delay: 1.4s; }
.p4 { left: 82%; top: 62%; animation-delay: 2.1s; }
.p5 { left: 48%; top: 18%; animation-delay: 3s; }

.depth-ring {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: 2;
  border: 1px solid rgba(185, 155, 82, 0.2);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) rotateX(62deg);
  box-shadow: inset 0 0 34px rgba(255, 255, 255, 0.32), 0 0 34px rgba(185, 155, 82, 0.08);
}

.ring-a {
  width: min(560px, 86%);
  aspect-ratio: 1;
  animation: orbitalRing 22s linear infinite;
}

.ring-b {
  width: min(430px, 68%);
  aspect-ratio: 1;
  border-color: rgba(10, 11, 12, 0.12);
  animation: orbitalRing 17s linear infinite reverse;
}

.ring-c {
  width: min(310px, 50%);
  aspect-ratio: 1;
  border-color: rgba(185, 155, 82, 0.32);
  animation: orbitalRing 13s linear infinite;
}

.ai-depth-space .depth-core {
  z-index: 7;
}

.ai-depth-space .depth-core::before,
.ai-depth-space .depth-core::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  pointer-events: none;
}

.ai-depth-space .depth-core::before {
  border: 1px solid rgba(185, 155, 82, 0.22);
  animation: pulseRing 3.6s ease-in-out infinite;
}

.ai-depth-space .depth-core::after {
  background: conic-gradient(from 90deg, transparent, rgba(185, 155, 82, 0.26), transparent, rgba(255, 255, 255, 0.38), transparent);
  mask-image: radial-gradient(circle, transparent 62%, #000 64%, #000 68%, transparent 70%);
  animation: orbitalRingFlat 6.8s linear infinite;
}

.ai-depth-space .depth-object {
  left: 50%;
  right: auto;
  top: 49%;
  bottom: auto;
  z-index: 6;
  padding: 10px 15px;
  border-color: rgba(185, 155, 82, 0.24);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 42px rgba(10, 11, 12, 0.1), 0 0 24px rgba(185, 155, 82, 0.1);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.ai-depth-space .obj-a { animation-name: orbitObjectA; animation-duration: 18s; }
.ai-depth-space .obj-b { animation-name: orbitObjectB; animation-duration: 22s; }
.ai-depth-space .obj-c { animation-name: orbitObjectC; animation-duration: 20s; }
.ai-depth-space .obj-d { animation-name: orbitObjectD; animation-duration: 24s; }
.ai-depth-space .obj-e { animation-name: orbitObjectE; animation-duration: 16s; }

.info-token {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: 5;
  min-width: 42px;
  padding: 6px 9px;
  border: 1px solid rgba(10, 11, 12, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(34, 31, 27, 0.78);
  box-shadow: 0 10px 28px rgba(10, 11, 12, 0.08);
  backdrop-filter: blur(10px);
  font-family: var(--font-latin);
  font-size: 10px;
  font-weight: 780;
  text-align: center;
  animation: infoCapture 5.8s ease-in infinite;
}

.t1 { --token-x: -310px; --token-y: -194px; animation-delay: 0s; }
.t2 { --token-x: 286px; --token-y: -172px; animation-delay: 0.55s; }
.t3 { --token-x: -348px; --token-y: 28px; animation-delay: 1.1s; }
.t4 { --token-x: 328px; --token-y: 82px; animation-delay: 1.65s; }
.t5 { --token-x: -232px; --token-y: 218px; animation-delay: 2.2s; }
.t6 { --token-x: 246px; --token-y: 226px; animation-delay: 2.75s; }
.t7 { --token-x: -86px; --token-y: -278px; animation-delay: 3.3s; }
.t8 { --token-x: 92px; --token-y: 286px; animation-delay: 3.85s; }
.t9 { --token-x: -396px; --token-y: -88px; animation-delay: 4.4s; }
.t10 { --token-x: 386px; --token-y: -16px; animation-delay: 4.95s; }

.ai-depth-space .depth-particle {
  left: 50%;
  top: 49%;
  z-index: 4;
  width: var(--dot-size, 7px);
  height: var(--dot-size, 7px);
  background: rgba(185, 155, 82, 0.88);
  box-shadow: 0 0 22px rgba(185, 155, 82, 0.58), 0 0 42px rgba(255, 255, 255, 0.7);
  animation: particleBurst var(--dot-speed, 4.8s) ease-out infinite;
}

.ai-depth-space .p1 { --px: -168px; --py: -142px; --dot-size: 7px; animation-delay: 0s; }
.ai-depth-space .p2 { --px: 196px; --py: -126px; --dot-size: 5px; animation-delay: 0.24s; }
.ai-depth-space .p3 { --px: -232px; --py: 54px; --dot-size: 6px; animation-delay: 0.48s; }
.ai-depth-space .p4 { --px: 250px; --py: 78px; --dot-size: 8px; animation-delay: 0.72s; }
.ai-depth-space .p5 { --px: -86px; --py: 210px; --dot-size: 5px; animation-delay: 0.96s; }
.ai-depth-space .p6 { --px: 96px; --py: 222px; --dot-size: 7px; animation-delay: 1.2s; }
.ai-depth-space .p7 { --px: -26px; --py: -258px; --dot-size: 4px; animation-delay: 1.44s; }
.ai-depth-space .p8 { --px: 32px; --py: 260px; --dot-size: 6px; animation-delay: 1.68s; }
.ai-depth-space .p9 { --px: -302px; --py: -32px; --dot-size: 5px; animation-delay: 1.92s; }
.ai-depth-space .p10 { --px: 308px; --py: -46px; --dot-size: 7px; animation-delay: 2.16s; }
.ai-depth-space .p11 { --px: -206px; --py: -214px; --dot-size: 4px; animation-delay: 2.4s; }
.ai-depth-space .p12 { --px: 226px; --py: -198px; --dot-size: 6px; animation-delay: 2.64s; }
.ai-depth-space .p13 { --px: -258px; --py: 166px; --dot-size: 8px; animation-delay: 2.88s; }
.ai-depth-space .p14 { --px: 268px; --py: 172px; --dot-size: 5px; animation-delay: 3.12s; }
.ai-depth-space .p15 { --px: -118px; --py: -288px; --dot-size: 6px; animation-delay: 3.36s; }
.ai-depth-space .p16 { --px: 132px; --py: -282px; --dot-size: 4px; animation-delay: 3.6s; }

.ai-tab-panel {
  position: relative;
  overflow: hidden;
}

.ai-panel-visual {
  background:
    linear-gradient(90deg, rgba(248, 249, 247, 0.9), rgba(248, 249, 247, 0.3)),
    radial-gradient(circle at 68% 42%, rgba(185, 155, 82, 0.18), transparent 24rem),
    url("../assets/images/hero-3-ai-native-v2-opt.webp") center / cover;
}

.ai-panel-core {
  animation: floatSoft 4.6s ease-in-out infinite alternate;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--graphite);
  font-size: 13px;
  font-weight: 720;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(185, 155, 82, 0.62);
}

.qr-row {
  display: grid;
  grid-template-columns: repeat(2, 128px);
  gap: 14px;
}

.qr-item {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
  transition:
    transform 0.34s ease,
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    background 0.34s ease;
}

.qr-item::before,
.qr-item::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.34s ease, transform 0.6s ease;
}

.qr-item::before {
  inset: 0;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.62), transparent 28%),
    linear-gradient(115deg, transparent 10%, rgba(214, 185, 110, 0.18) 46%, transparent 64%);
  transform: translateX(-18%);
}

.qr-item::after {
  left: 12px;
  right: 12px;
  top: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 155, 82, 0.8), transparent);
  transform: translateY(0);
}

.qr-item:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 155, 82, 0.36);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(10, 11, 12, 0.1), 0 0 28px rgba(214, 185, 110, 0.14);
}

.qr-item:hover::before {
  opacity: 1;
  transform: translateX(16%);
}

.qr-item:hover::after {
  opacity: 0.9;
  transform: translateY(90px);
}

.qr-item img {
  position: relative;
  z-index: 1;
  width: 108px;
  height: 108px;
  margin: 0 auto 8px;
  transition: transform 0.34s ease, filter 0.34s ease;
}

.qr-item:hover img {
  transform: scale(1.045);
  filter: contrast(1.06) drop-shadow(0 8px 18px rgba(10, 11, 12, 0.12));
}

.qr-item span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  margin-top: 108px;
  padding: 42px 0 30px;
  border-top: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(236, 235, 231, 0.76)),
    repeating-linear-gradient(90deg, rgba(10, 11, 12, 0.025) 0, rgba(10, 11, 12, 0.025) 1px, transparent 1px, transparent 52px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.92fr 1fr;
  gap: 18px;
}

.footer-card {
  padding: 22px;
}

.footer-card h3 {
  margin-bottom: 12px;
  color: var(--graphite);
  font-size: 18px;
}

.footer-brand-mark {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 14px;
}

.footer-brand-mark img {
  width: 116px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 16px rgba(10, 11, 12, 0.08));
}

.footer-brand-mark h3 {
  margin: 0;
  transform: translateY(0);
  font-size: 19px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: 0.01em;
}

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

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-links a[href*="work.weixin.qq.com"],
.page-hero-card a[href*="work.weixin.qq.com"] {
  width: fit-content;
  min-height: 32px;
  padding: 7px 12px 7px 8px;
  border: 1px solid rgba(36, 150, 111, 0.22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1f6f55;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(236, 247, 242, 0.72)),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 28px rgba(28, 105, 80, 0.08);
  font-weight: 720;
}

.footer-links a[href*="work.weixin.qq.com"]::before,
.page-hero-card a[href*="work.weixin.qq.com"]::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 36% 42%, #fff 0 2px, transparent 2.4px),
    radial-gradient(circle at 62% 42%, #fff 0 2px, transparent 2.4px),
    linear-gradient(135deg, #2ebf83, #1e8f67);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 4px 12px rgba(36, 150, 111, 0.22);
}

.footer-links a[href*="work.weixin.qq.com"]:hover,
.page-hero-card a[href*="work.weixin.qq.com"]:hover {
  border-color: rgba(36, 150, 111, 0.38);
  color: #15513e;
  transform: translateY(-1px);
}

.record-line {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.record-line a {
  color: var(--muted);
  text-decoration: none;
}

.record-line img {
  width: 18px;
  height: 20px;
}

.cursor-firefly {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  width: var(--length, 48px);
  height: 2px;
  border-radius: 999px;
  pointer-events: none;
  transform: translate3d(var(--x, 0), var(--y, 0), 0);
  background:
    linear-gradient(90deg, transparent 0%, rgba(154, 166, 162, 0.2) 12%, rgba(255, 255, 255, 0.98) 48%, rgba(255, 255, 255, 0.82) 56%, rgba(154, 166, 162, 0.2) 88%, transparent 100%);
  box-shadow:
    0 0 1px rgba(108, 119, 115, 0.2),
    0 0 9px rgba(255, 255, 255, 0.94),
    0 0 20px rgba(196, 207, 204, 0.5),
    0 0 38px rgba(255, 255, 255, 0.32);
  mix-blend-mode: normal;
  opacity: 0;
  animation: fireflyFade var(--life, 3200ms) cubic-bezier(0.16, 0.72, 0.26, 1) forwards;
}

.cursor-firefly::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle, 32deg));
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.68);
  opacity: 0.56;
}

.consult-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 48px rgba(10, 11, 12, 0.18);
  animation: consultBreath 2.9s ease-in-out infinite;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.consult-float::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0.95) 32%, transparent 36%),
    linear-gradient(135deg, rgba(185, 155, 82, 0.94), rgba(255, 255, 255, 0.22));
  box-shadow: 0 0 18px rgba(214, 185, 110, 0.32);
}

.consult-float::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgba(185, 155, 82, 0.36);
  opacity: 0;
  transform: scale(0.98);
  animation: consultRing 2.9s ease-out infinite;
  pointer-events: none;
}

.consult-float:hover {
  animation-play-state: paused;
  transform: translateY(-3px);
  background: #151312;
  box-shadow: 0 22px 58px rgba(10, 11, 12, 0.24), 0 0 28px rgba(185, 155, 82, 0.16);
}

.announcement {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 88;
  width: min(720px, calc(100vw - 158px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(185, 155, 82, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 52px rgba(10, 11, 12, 0.12);
  backdrop-filter: blur(12px);
}

.announcement.is-hidden {
  display: none;
}

.announcement p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.announcement-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
}

.announcement a,
.announcement button {
  border: 0;
  background: transparent;
  color: var(--graphite);
  text-decoration: none;
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
}

.notice-filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.legal-content {
  max-width: 860px;
}

.legal-hero {
  padding-bottom: 92px;
  background:
    radial-gradient(circle at 74% 18%, rgba(185, 155, 82, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 249, 247, 0.94));
}

.legal-panel {
  max-width: 920px;
  padding: 38px;
  border: 1px solid rgba(10, 11, 12, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 241, 237, 0.88)),
    repeating-linear-gradient(90deg, rgba(10, 11, 12, 0.02) 0, rgba(10, 11, 12, 0.02) 1px, transparent 1px, transparent 52px);
  box-shadow: 0 26px 80px rgba(10, 11, 12, 0.1);
}

.legal-panel h1 {
  margin: 14px 0 6px;
  color: var(--graphite);
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.18;
}

.legal-date {
  margin-bottom: 24px;
  color: var(--muted-2);
  font-size: 13px;
}

.legal-panel a {
  color: var(--gold-deep);
}

.legal-content h2 {
  margin-top: 36px;
  color: var(--graphite);
  font-size: 26px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.api-note {
  padding: 16px;
  border: 1px dashed rgba(185, 155, 82, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
  font-size: 13px;
}

.admin-login-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.admin-login-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 760;
}

.admin-login-form input {
  min-height: 46px;
  border: 1px solid rgba(18, 19, 18, 0.12);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  outline: none;
}

.admin-login-form input:focus {
  border-color: rgba(185, 155, 82, 0.44);
  box-shadow: 0 0 0 4px rgba(185, 155, 82, 0.1);
}

.admin-card .admin-login-form .btn {
  margin-top: 2px;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

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

@keyframes heroDrift {
  0% {
    transform: scale(1.018) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.038) translate3d(-5px, -2px, 0);
  }
  100% {
    transform: scale(1.056) translate3d(-10px, -5px, 0);
  }
}

@keyframes visualRise {
  0% {
    transform: scale(1.04);
    filter: saturate(0.86) contrast(0.96) brightness(1.06);
  }
  100% {
    transform: scale(1.015);
    filter: saturate(0.94) contrast(0.99) brightness(1.02);
  }
}

@keyframes imageBreath {
  0% {
    transform: scale(1.015);
  }
  100% {
    transform: scale(1.045) translate3d(-8px, -4px, 0);
  }
}

@keyframes imageBreathRight {
  0% {
    transform: scale(1.015);
  }
  100% {
    transform: scale(1.04) translate3d(0, -4px, 0);
  }
}

@keyframes imageBreathContain {
  0% {
    transform: scale(0.985);
  }
  100% {
    transform: scale(1.01) translate3d(0, -3px, 0);
  }
}

@keyframes imageBreathProduct {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.05) translate3d(-5px, -3px, 0);
  }
}

@keyframes visualLightSweep {
  0% {
    background-position: 0 0, -86% 0, 0 0;
    opacity: 0.82;
  }
  100% {
    background-position: 0 0, 92% 0, 0 0;
    opacity: 1;
  }
}

@keyframes orbitSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes signalFlow {
  0% {
    transform: translateX(-8px);
    opacity: 0.45;
  }
  100% {
    transform: translateX(8px);
    opacity: 0.95;
  }
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.34;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.72;
  }
}

@keyframes retailPulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.18;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.56;
  }
}

@keyframes retailGlowFloat {
  0% {
    transform: translateY(0) scale(0.98);
    opacity: 0.78;
  }
  100% {
    transform: translateY(-7px) scale(1.04);
    opacity: 1;
  }
}

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

@keyframes strategyPillFloat {
  0% {
    transform: translate3d(0, 0, 0);
    box-shadow: var(--shadow-soft);
  }
  100% {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 16px 42px rgba(10, 11, 12, 0.075);
  }
}

@keyframes strategyPillFloatCenter {
  0% {
    transform: translateX(-50%) translate3d(0, 0, 0);
    box-shadow: var(--shadow-soft);
  }
  100% {
    transform: translateX(-50%) translate3d(0, -8px, 0);
    box-shadow: 0 16px 42px rgba(10, 11, 12, 0.075);
  }
}

@keyframes strategyRibbonOrbit {
  0% {
    transform: scaleY(0.58) rotate(-9deg);
    opacity: 0.78;
  }
  50% {
    opacity: 0.94;
  }
  100% {
    transform: scaleY(0.58) rotate(351deg);
    opacity: 0.78;
  }
}

@keyframes strategyRibbonOrbitInner {
  0% {
    transform: scaleY(0.62) rotate(18deg);
    opacity: 0.56;
  }
  50% {
    opacity: 0.82;
  }
  100% {
    transform: scaleY(0.62) rotate(378deg);
    opacity: 0.56;
  }
}

@keyframes strategyRibbonFlow {
  0% {
    transform: translate(-50%, -50%) rotate(var(--rotate, 0deg)) scaleY(0.56);
    opacity: 0.58;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) rotate(calc(var(--rotate, 0deg) + 360deg)) scaleY(0.56);
    opacity: 0.58;
  }
}

@keyframes lineScan {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-7px);
  }
}

@keyframes logoHaloSweep {
  0% {
    opacity: 0.48;
    background-position: -20% 0, 50% 50%;
  }
  100% {
    opacity: 0.86;
    background-position: 120% 0, 50% 50%;
  }
}

@keyframes logoParticleDrift {
  0% {
    transform: translate3d(-3px, 2px, 0) scale(0.98);
    opacity: 0.42;
  }
  100% {
    transform: translate3d(4px, -3px, 0) scale(1.02);
    opacity: 0.72;
  }
}

@keyframes consultBreath {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 48px rgba(10, 11, 12, 0.17), 0 0 0 rgba(185, 155, 82, 0);
  }
  52% {
    transform: translateY(-1px) scale(1.014);
    box-shadow: 0 20px 52px rgba(10, 11, 12, 0.21), 0 0 18px rgba(185, 155, 82, 0.16);
  }
}

@keyframes consultRing {
  0% {
    opacity: 0.36;
    transform: scale(0.98);
  }
  62% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes fireflyFade {
  0% {
    opacity: 0;
    transform: translate3d(var(--x), var(--y), 0) rotate(var(--angle, 0deg)) scaleX(0.12);
    filter: blur(1.2px);
  }
  22% {
    opacity: 0.84;
    filter: blur(0.22px);
  }
  58% {
    opacity: 0.58;
    filter: blur(0.42px);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--x) + var(--dx)), calc(var(--y) + var(--dy)), 0) rotate(var(--angle, 0deg)) scaleX(1.28);
    filter: blur(1.65px);
  }
}

@keyframes verticalLightBloom {
  0%,
  100% {
    background-position: 0 0, 0 0, 0 118%, 0 0;
    opacity: 0.38;
  }
  44% {
    background-position: 0 0, 0 0, 0 46%, 0 0;
    opacity: 0.86;
  }
  72% {
    background-position: 0 0, 0 0, 0 4%, 0 0;
    opacity: 0.5;
  }
}

@keyframes upwardLightConverge {
  0%,
  100% {
    opacity: 0;
    transform: translateY(54px) scaleX(0.42) scaleY(0.54);
  }
  38% {
    opacity: 0.78;
    transform: translateY(-4px) scaleX(0.8) scaleY(1);
  }
  66% {
    opacity: 0.28;
    transform: translateY(-34px) scaleX(1.18) scaleY(1.2);
  }
}

@keyframes orbitTilt {
  0% {
    transform: rotateX(66deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(66deg) rotateZ(360deg);
  }
}

@keyframes flowSpin {
  0% {
    transform: translate(-50%, -50%) rotate(var(--rotate, 0deg));
    opacity: 0.42;
  }
  50% {
    opacity: 0.92;
  }
  100% {
    transform: translate(-50%, -50%) rotate(calc(var(--rotate, 0deg) + 360deg));
    opacity: 0.42;
  }
}

@keyframes depthGridMove {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 0 58px, 58px 0;
  }
}

@keyframes coreFloat {
  0% {
    transform: translate(-50%, -50%) translateZ(120px) rotateX(0deg);
  }
  100% {
    transform: translate(-50%, -53%) translateZ(150px) rotateX(4deg);
  }
}

@keyframes depthDrift {
  0% {
    translate: 0 0;
  }
  100% {
    translate: 0 -10px;
  }
}

@keyframes particleDepth {
  0% {
    transform: translate3d(0, 0, -120px) scale(0.62);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  100% {
    transform: translate3d(42px, -82px, 220px) scale(1.35);
    opacity: 0;
  }
}

@keyframes orbitalRing {
  0% {
    transform: translate(-50%, -50%) rotateX(62deg) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(62deg) rotateZ(360deg);
  }
}

@keyframes orbitalRingFlat {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes orbitObjectA {
  0% { transform: translate(-50%, -50%) rotate(0deg) translateX(245px) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg) translateX(245px) rotate(-360deg); }
}

@keyframes orbitObjectB {
  0% { transform: translate(-50%, -50%) rotate(72deg) translateX(226px) rotate(-72deg); }
  100% { transform: translate(-50%, -50%) rotate(432deg) translateX(226px) rotate(-432deg); }
}

@keyframes orbitObjectC {
  0% { transform: translate(-50%, -50%) rotate(146deg) translateX(256px) rotate(-146deg); }
  100% { transform: translate(-50%, -50%) rotate(506deg) translateX(256px) rotate(-506deg); }
}

@keyframes orbitObjectD {
  0% { transform: translate(-50%, -50%) rotate(222deg) translateX(226px) rotate(-222deg); }
  100% { transform: translate(-50%, -50%) rotate(582deg) translateX(226px) rotate(-582deg); }
}

@keyframes orbitObjectE {
  0% { transform: translate(-50%, -50%) rotate(296deg) translateX(224px) rotate(-296deg); }
  100% { transform: translate(-50%, -50%) rotate(656deg) translateX(224px) rotate(-656deg); }
}

@keyframes orbitObjectAMobile {
  0% { transform: translate(-50%, -50%) rotate(0deg) translateX(132px) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg) translateX(132px) rotate(-360deg); }
}

@keyframes orbitObjectBMobile {
  0% { transform: translate(-50%, -50%) rotate(72deg) translateX(128px) rotate(-72deg); }
  100% { transform: translate(-50%, -50%) rotate(432deg) translateX(128px) rotate(-432deg); }
}

@keyframes orbitObjectCMobile {
  0% { transform: translate(-50%, -50%) rotate(146deg) translateX(138px) rotate(-146deg); }
  100% { transform: translate(-50%, -50%) rotate(506deg) translateX(138px) rotate(-506deg); }
}

@keyframes orbitObjectDMobile {
  0% { transform: translate(-50%, -50%) rotate(222deg) translateX(124px) rotate(-222deg); }
  100% { transform: translate(-50%, -50%) rotate(582deg) translateX(124px) rotate(-582deg); }
}

@keyframes orbitObjectEMobile {
  0% { transform: translate(-50%, -50%) rotate(296deg) translateX(118px) rotate(-296deg); }
  100% { transform: translate(-50%, -50%) rotate(656deg) translateX(118px) rotate(-656deg); }
}

@keyframes infoCapture {
  0% {
    transform: translate(-50%, -50%) translate(var(--token-x), var(--token-y)) scale(1);
    opacity: 0;
    filter: blur(1.8px);
  }
  15% {
    opacity: 0.82;
    filter: blur(0);
  }
  82% {
    opacity: 0.88;
  }
  100% {
    transform: translate(-50%, -50%) translate(0, 0) scale(0.24);
    opacity: 0;
    filter: blur(1px);
  }
}

@keyframes particleBurst {
  0% {
    transform: translate(-50%, -50%) scale(0.35);
    opacity: 0;
  }
  16% {
    opacity: 0.95;
  }
  100% {
    transform: translate(-50%, -50%) translate(var(--px), var(--py)) scale(1.18);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1180px) {
  .site-nav {
    display: none;
  }

  .header-inner {
    position: relative;
  }

  .header-actions {
    position: absolute;
    top: 16px;
    right: 0;
  }

  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: fixed;
    top: 16px;
    right: 20px;
    z-index: 120;
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
    box-shadow: var(--shadow-soft);
  }

  .mobile-panel {
    display: block;
    position: fixed;
    inset: 74px 0 0;
    z-index: 79;
    background: rgba(248, 249, 247, 0.96);
    backdrop-filter: blur(18px);
    border-top: 1px solid var(--line-soft);
    transform: translateX(100%);
    transition: transform 0.2s ease;
  }

  body.is-menu-open .mobile-panel {
    transform: translateX(0);
  }

  .mobile-panel nav {
    width: min(100% - 40px, 720px);
    margin: 0 auto;
    padding: 28px 0;
    display: grid;
    gap: 14px;
  }

  .mobile-nav-group {
    display: grid;
    gap: 4px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .mobile-nav-group > span {
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 760;
  }

  .mobile-panel a {
    padding: 9px 0;
    border-bottom: 0;
    color: var(--graphite);
    text-decoration: none;
    font-size: 17px;
    font-weight: 760;
  }

  .hero-grid,
  .hero-immersive-grid,
  .vision-story,
  .vision-story-reverse,
  .strategy-board,
  .split-layout,
  .ai-layout,
  .ai-command,
  .product-layout,
  .growth-map,
  .endorsement-tree,
  .job-modal-grid,
  .page-hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 42px;
  }

  .hero-immersive-grid {
    min-height: 640px;
    align-content: center;
  }

  .hero-side-panel {
    max-width: 520px;
    align-self: start;
  }

  .architecture-map {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .architecture-core,
  .architecture-node {
    position: static;
    width: auto;
    transform: none;
  }

  .growth-center {
    min-height: 220px;
  }

  .growth-map-visual {
    grid-template-columns: 1fr;
  }

  .expert-advisor-panel,
  .authority-expert-panel {
    grid-template-columns: 1fr;
  }

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

  .ai-system-visual {
    min-height: 480px;
  }

  .strategy-field {
    min-height: 520px;
    display: block;
  }

  .strategy-core-mark {
    width: min(280px, 70%);
  }

  .strategy-pill {
    min-width: auto;
    max-width: 160px;
    font-size: 12px;
  }

  .growth-panorama {
    min-height: 460px;
  }

  .growth-stream {
    bottom: 18px;
    min-width: 150px;
    font-size: 12px;
  }

  .growth-stream::before {
    width: 76px;
  }

  .ai-depth-space {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 28px, 1240px);
    max-width: calc(100vw - 28px);
  }

  .header-actions .btn-quiet {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }

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

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-proof,
  .chapter-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .product-grid,
  .media-grid,
  .authority-cert-grid,
  .authority-feature-grid,
  .authority-video-grid,
  .detail-meta {
    grid-template-columns: 1fr;
  }

  .retail-partner-strip {
    grid-template-columns: 1fr;
  }

  .retail-partner-strip article {
    min-height: auto;
  }

  .retail-ecosystem-panel {
    min-height: 390px;
  }

  .retail-orbit {
    width: min(320px, 88%);
  }

  .expert-advisor-panel,
  .authority-expert-panel {
    padding: 20px;
  }

  .expert-identity-block {
    grid-template-columns: 1fr;
  }

  .expert-badge-stack {
    display: flex;
    flex-wrap: wrap;
  }

  .expert-badge-stack span {
    min-width: 0;
  }

  .product-card-image {
    width: 56%;
    max-width: 190px;
    right: -20px;
    bottom: -50px;
  }

  .ai-depth-space .depth-object {
    font-size: 11px;
    padding: 8px 10px;
  }

  .ai-depth-space .obj-a { animation-name: orbitObjectAMobile; animation-duration: 18s; }
  .ai-depth-space .obj-b { animation-name: orbitObjectBMobile; animation-duration: 22s; }
  .ai-depth-space .obj-c { animation-name: orbitObjectCMobile; animation-duration: 20s; }
  .ai-depth-space .obj-d { animation-name: orbitObjectDMobile; animation-duration: 24s; }
  .ai-depth-space .obj-e { animation-name: orbitObjectEMobile; animation-duration: 16s; }

  .info-token {
    min-width: 34px;
    padding: 5px 7px;
    font-size: 9px;
  }

  .t1 { --token-x: -160px; --token-y: -126px; }
  .t2 { --token-x: 152px; --token-y: -112px; }
  .t3 { --token-x: -174px; --token-y: 8px; }
  .t4 { --token-x: 168px; --token-y: 38px; }
  .t5 { --token-x: -126px; --token-y: 132px; }
  .t6 { --token-x: 128px; --token-y: 136px; }
  .t7 { --token-x: -42px; --token-y: -176px; }
  .t8 { --token-x: 48px; --token-y: 174px; }
  .t9,
  .t10 {
    display: none;
  }

  .endorsement-branches::before {
    display: none;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(248, 249, 247, 0.86) 0%, rgba(248, 249, 247, 0.5) 38%, rgba(248, 249, 247, 0.18) 72%, rgba(248, 249, 247, 0.56) 100%),
      linear-gradient(90deg, rgba(248, 249, 247, 0.78) 0%, rgba(248, 249, 247, 0.34) 45%, rgba(248, 249, 247, 0.04) 100%);
  }

  .hero-immersive-grid {
    min-height: 560px;
    gap: 20px;
  }

  .hero-bottom {
    display: grid;
    gap: 20px;
    align-items: start;
    margin-top: 6px;
  }

  .hero-dots {
    order: -1;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-head h2,
  .page-hero h1 {
    font-size: clamp(28px, 8vw, 31px);
  }

  .section {
    padding-top: 82px;
  }

  .lux-visual,
  .product-vision .lux-visual {
    min-height: 420px;
  }

  .story-copy {
    max-width: none;
  }

  .notice-card,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .job-modal {
    padding: 22px;
  }

  .modal-backdrop {
    padding: 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .announcement {
    left: 14px;
    right: 14px;
    bottom: 78px;
    width: auto;
    transform: none;
    align-items: flex-start;
    flex-direction: column;
  }

  .authority-cert-grid .media-thumb {
    padding: 8px;
  }
}

@media (max-width: 620px) {
  .brand-text span {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block !important;
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
    box-shadow: var(--shadow-soft);
    flex: 0 0 42px;
  }

  .menu-toggle span {
    position: absolute;
    left: 11px;
    margin: 0;
    background: var(--paper);
  }

  .menu-toggle span:nth-child(1) {
    top: 14px;
  }

  .menu-toggle span:nth-child(2) {
    top: 20px;
  }

  .menu-toggle span:nth-child(3) {
    top: 26px;
  }

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

  .hero {
    padding-top: 96px;
  }

  .hero-immersive-grid {
    min-height: 520px;
  }

  .hero-slide img {
    object-position: right center;
  }

  .hero-tone {
    background:
      linear-gradient(180deg, rgba(248, 249, 247, 0) 0%, rgba(248, 249, 247, 0.42) 96%),
      repeating-linear-gradient(90deg, rgba(10, 11, 12, 0.018) 0, rgba(10, 11, 12, 0.018) 1px, transparent 1px, transparent 56px);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-side-panel {
    padding: 16px;
  }

  .proof-card {
    padding: 16px;
  }

  .lux-visual,
  .product-vision .lux-visual {
    min-height: 300px;
  }

  .story-copy h3 {
    font-size: 25px;
  }

  .story-copy p {
    font-size: 14px;
    line-height: 1.82;
  }

  .story-points,
  .category-line {
    gap: 8px;
  }

  .story-points span,
  .category-line span {
    font-size: 11px;
    padding: 7px 10px;
  }

  .page-hero {
    padding-top: 112px;
  }

  .site-shell {
    width: calc(100% - 28px);
    max-width: calc(100vw - 28px);
  }

  .page-hero h1,
  .section-head h2 {
    max-width: 100%;
    font-size: clamp(27px, 7.2vw, 31px);
    line-height: 1.24;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .page-hero p,
  .section-desc,
  .page-hero-card p {
    max-width: min(100%, 330px);
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .product-card p,
  .growth-node p,
  .card p,
  .feature-card p,
  .admin-card p {
    max-width: min(100%, 318px);
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .product-card {
    min-width: 0;
  }

  .product-card-image {
    right: -54px;
    max-width: 156px;
  }

  .card,
  .feature-card,
  .page-panel,
  .media-card,
  .notice-card,
  .job-card,
  .admin-card,
  .timeline-item,
  .product-detail,
  .tab-panel,
  .footer-card {
    padding: 18px;
  }

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

  .brand-logo {
    width: 92px;
    height: 40px;
  }

  .brand-logo img {
    width: 92px;
  }

  .brand-text {
    transform: translateY(2px);
  }

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

  .ai-system-visual {
    min-height: 380px;
  }

  .orbit-1 {
    width: 300px;
    height: 300px;
  }

  .orbit-2 {
    width: 230px;
    height: 230px;
  }

  .orbit-3 {
    width: 150px;
    height: 150px;
  }

  .ai-core {
    width: 158px;
    min-height: 126px;
  }

  .ai-node {
    min-width: 90px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .ai-node-a,
  .ai-node-c {
    left: 7%;
  }

  .ai-node-b,
  .ai-node-d {
    right: 7%;
  }

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

  .job-modal {
    overflow: auto;
  }

  .job-rich-scroll {
    max-height: none;
    padding-right: 0;
  }

  .application-form {
    position: static;
  }

  .legal-panel {
    padding: 24px 18px;
  }

  .strategy-pill {
    position: static;
    display: inline-block;
    margin: 8px;
  }

  .strategy-field {
    min-height: auto;
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
  }

  .strategy-field::before,
  .strategy-field::after {
    inset: 18%;
  }

  .strategy-core-mark {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1 / -1;
    width: min(260px, 86%);
    margin: 0 auto 10px;
    transform: none;
  }

  .strategy-flow,
  .strategy-orb {
    pointer-events: none;
  }

  .strategy-pill {
    min-width: 0;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 9px 8px;
    font-size: 11px;
    line-height: 1.35;
    white-space: normal;
    animation-name: strategyPillFloat;
  }

  .pill-product,
  .pill-service {
    transform: none;
    animation-name: strategyPillFloat;
  }

  .growth-panorama {
    min-height: 390px;
  }

  .stream-left,
  .stream-right {
    left: 16px;
    right: 16px;
  }

  .stream-left {
    bottom: 72px;
  }

  .growth-stream::before {
    display: none;
  }

  .depth-object {
    font-size: 12px;
    padding: 8px 10px;
  }

  .ai-depth-space .depth-object {
    left: 50%;
    right: auto;
    top: 49%;
    bottom: auto;
    font-size: 10px;
    padding: 7px 9px;
  }

  .consult-float {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    width: 44px;
    padding: 0;
    gap: 6px;
    font-size: 0;
  }

  .consult-float::before {
    width: 16px;
    height: 16px;
  }
}

/* Final visual refinement overrides: clear imagery, sparse white light, no fog layer. */
.lux-visual img,
.image-panel img,
.growth-center-image img,
.growth-lift-visual img,
.product-matrix-visual img,
.product-vision .lux-visual img {
  filter: saturate(1.04) contrast(1.05) brightness(1.01);
}

.lux-visual::before,
.image-panel::after,
.product-visual::before {
  opacity: 0.28;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at var(--light-x, 18%) var(--light-y, 18%), rgba(255, 255, 255, 0.24), transparent 10rem),
    linear-gradient(112deg, transparent 0%, transparent 44%, rgba(255, 255, 255, 0.22) 50%, transparent 57%, transparent 100%);
  background-size: 100% 100%, 270% 100%;
  animation: clearImageGlimmer 10.4s cubic-bezier(0.42, 0, 0.2, 1) infinite alternate;
}

.lux-visual::after,
.product-visual::after {
  opacity: 0.34;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.66), transparent);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.26);
}

.image-panel::after {
  opacity: 0.24;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.2), transparent 11rem),
    linear-gradient(112deg, transparent 0%, transparent 47%, rgba(255, 255, 255, 0.18) 52%, transparent 59%, transparent 100%);
}

.growth-lift-visual::before {
  opacity: 0.38;
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse at 52% 34%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.1) 16%, transparent 38%),
    linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.02) 34%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.02) 66%, transparent 100%);
  background-size: 100% 100%, 100% 240%;
}

.growth-lift-visual::after {
  opacity: 0;
  filter: blur(8px);
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse at 50% 8%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.13) 16%, transparent 34%),
    linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.05) 32%, rgba(255, 255, 255, 0.28) 52%, rgba(255, 255, 255, 0.05) 72%, transparent 100%);
}

.growth-center-image::after {
  opacity: 0.22;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.22), transparent 17rem),
    linear-gradient(112deg, transparent 0%, transparent 47%, rgba(255, 255, 255, 0.15) 52%, transparent 59%, transparent 100%);
  background-size: 100% 100%, 270% 100%;
  animation: clearImageGlimmer 11s cubic-bezier(0.42, 0, 0.2, 1) infinite alternate;
}

.growth-center-image > div {
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(7px);
}

.product-card::after {
  opacity: 0;
  background:
    radial-gradient(circle at 76% 80%, rgba(255, 255, 255, 0.24), transparent 6rem),
    linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.product-card:hover::after,
.product-card.is-active::after,
.product-card:focus-visible::after {
  opacity: 0.38;
}

.cursor-firefly {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  width: var(--size, 24px);
  height: var(--size, 24px);
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(var(--x, 0), var(--y, 0), 0) rotate(var(--angle, 0deg));
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 1px, rgba(255, 255, 255, 0.42) 2px, transparent 4px),
    conic-gradient(from 0deg, transparent 0 9deg, rgba(255, 255, 255, 0.44) 10deg 12deg, transparent 13deg 44deg, rgba(255, 255, 255, 0.3) 45deg 47deg, transparent 48deg 92deg, rgba(255, 255, 255, 0.36) 93deg 95deg, transparent 96deg 176deg, rgba(255, 255, 255, 0.28) 177deg 179deg, transparent 180deg 360deg);
  box-shadow:
    0 0 7px rgba(255, 255, 255, 0.44),
    0 0 18px rgba(255, 255, 255, 0.16);
  mix-blend-mode: screen;
  opacity: 0;
  filter: blur(0.2px);
  animation: whiteSparkFade var(--life, 4200ms) cubic-bezier(0.16, 0.72, 0.26, 1) forwards;
}

.cursor-firefly::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 42%),
    repeating-conic-gradient(from 18deg, rgba(255, 255, 255, 0.16) 0 1deg, transparent 1deg 34deg);
  box-shadow: none;
  opacity: 0.4;
  transform: translate(-50%, -50%) scale(0.78);
}

@keyframes clearImageGlimmer {
  0% {
    background-position: 0 0, -120% 0;
    opacity: 0.16;
  }
  42% {
    opacity: 0.3;
  }
  100% {
    background-position: 0 0, 126% 0;
    opacity: 0.22;
  }
}

@keyframes whiteSparkFade {
  0% {
    opacity: 0;
    transform: translate3d(var(--x), var(--y), 0) rotate(var(--angle, 0deg)) scale(0.16);
    filter: blur(1px);
  }
  18% {
    opacity: 0.52;
    filter: blur(0.12px);
  }
  48% {
    opacity: 0.32;
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--x) + var(--dx)), calc(var(--y) + var(--dy)), 0) rotate(calc(var(--angle, 0deg) + 18deg)) scale(1.72);
    filter: blur(1.8px);
  }
}

/* Hero and key-image clarity pass: preserve original image texture, keep light motion barely present. */
.hero-media::after {
  background:
    radial-gradient(circle at 82% 46%, rgba(255, 255, 255, 0.08), transparent 32rem),
    linear-gradient(90deg, rgba(248, 249, 247, 0.72) 0%, rgba(248, 249, 247, 0.42) 24%, rgba(248, 249, 247, 0.08) 52%, rgba(248, 249, 247, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(248, 249, 247, 0) 58%, rgba(248, 249, 247, 0.34) 100%);
}

.hero-tone {
  opacity: 0.45;
  background:
    linear-gradient(180deg, rgba(248, 249, 247, 0) 0%, rgba(248, 249, 247, 0.24) 96%),
    repeating-linear-gradient(90deg, rgba(10, 11, 12, 0.01) 0, rgba(10, 11, 12, 0.01) 1px, transparent 1px, transparent 68px);
  mask-image: none;
}

.hero-slide {
  filter: none;
}

.hero-slide.is-active {
  filter: none;
}

.hero-slide img {
  filter: saturate(1.12) contrast(1.1) brightness(1.02);
}

.lux-visual::before,
.image-panel::after,
.product-visual::before {
  opacity: 0.16;
  background:
    radial-gradient(circle at var(--light-x, 18%) var(--light-y, 18%), rgba(255, 255, 255, 0.16), transparent 8rem),
    linear-gradient(112deg, transparent 0%, transparent 46%, rgba(255, 255, 255, 0.14) 51%, transparent 56%, transparent 100%);
}

.lux-visual::after,
.product-visual::after {
  opacity: 0.18;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.16);
}

.image-panel::after {
  opacity: 0.14;
}

.growth-lift-visual::before {
  opacity: 0.2;
}

.growth-lift-visual::after {
  filter: blur(6px);
}

.growth-center-image::after {
  opacity: 0.14;
}

.growth-panorama img {
  filter: saturate(1.08) contrast(1.07) brightness(1.01);
}

.growth-panorama::before {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.12), transparent 19rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(10, 11, 12, 0.08));
}

.growth-panorama::after {
  opacity: 0.54;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.16));
}

.proof-card,
.hero-side-panel {
  backdrop-filter: blur(8px);
}

@media (max-width: 900px) {
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(248, 249, 247, 0.44) 0%, rgba(248, 249, 247, 0.2) 38%, rgba(248, 249, 247, 0.04) 72%, rgba(248, 249, 247, 0.24) 100%),
      linear-gradient(90deg, rgba(248, 249, 247, 0.42) 0%, rgba(248, 249, 247, 0.14) 45%, rgba(248, 249, 247, 0) 100%);
  }

  .hero-tone {
    opacity: 0.22;
  }

  .hero-slide img {
    filter: saturate(1.18) contrast(1.12) brightness(1.08);
  }

  .lux-visual img,
  .image-panel img,
  .growth-center-image img,
  .growth-lift-visual img,
  .product-matrix-visual img,
  .product-vision .lux-visual img {
    filter: saturate(1.12) contrast(1.08) brightness(1.06);
  }

  .lux-visual::before,
  .image-panel::after,
  .product-visual::before {
    opacity: 0.1;
  }
}

@media (max-width: 620px) {
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(248, 249, 247, 0.34) 0%, rgba(248, 249, 247, 0.16) 42%, rgba(248, 249, 247, 0.02) 74%, rgba(248, 249, 247, 0.18) 100%),
      linear-gradient(90deg, rgba(248, 249, 247, 0.32) 0%, rgba(248, 249, 247, 0.1) 46%, rgba(248, 249, 247, 0) 100%);
  }

  .hero-tone {
    opacity: 0.16;
  }

  .hero-slide img {
    filter: saturate(1.2) contrast(1.13) brightness(1.1);
  }
}

/* v1.1-C refined layer: preserve the v1.0 porcelain-gold tone while tightening completion quality. */
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.82), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(185, 155, 82, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 249, 247, 0.98) 42%, rgba(238, 238, 234, 0.98) 100%);
}

body::before {
  opacity: 0.42;
  background-size: 56px 56px;
}

.site-header {
  transition: background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.is-scrolled .site-header {
  border-color: rgba(10, 11, 12, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 36px rgba(10, 11, 12, 0.07);
}

.site-nav a::after {
  transform: scaleX(0.38);
  transition: opacity 0.18s ease, transform 0.2s ease;
}

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

.mobile-panel a.is-active {
  color: var(--gold-deep);
  background: rgba(185, 155, 82, 0.08);
}

.hero h1 {
  max-width: 720px;
}

.hero-side-panel strong {
  font-size: 17px;
}

.hero-proof {
  width: min(980px, 100%);
}

.proof-card {
  min-height: 118px;
}

.proof-card strong,
.card h3,
.feature-card h3,
.media-card h3,
.notice-card h3,
.job-card h3,
.admin-card h3 {
  text-wrap: balance;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(185, 155, 82, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 249, 247, 0.96));
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 155, 82, 0.38), transparent);
  pointer-events: none;
}

.page-hero h1 {
  max-width: 920px;
  text-wrap: balance;
}

.page-hero p {
  color: #5c5c56;
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(247, 246, 241, 0.72)),
    rgba(255, 255, 255, 0.74);
}

.page-hero-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 155, 82, 0.58), transparent);
}

.section-head h2 {
  max-width: 940px;
  text-wrap: balance;
}

.card,
.feature-card,
.media-card,
.notice-card,
.job-card,
.admin-card,
.footer-card,
.product-card,
.product-detail {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 250, 247, 0.72)),
    var(--surface);
}

.media-thumb,
.image-panel,
.lux-visual,
.growth-panorama,
.detail-visual {
  background-color: #f2f1ec;
}

.media-thumb img,
.image-panel img,
.lux-visual img,
.growth-panorama img,
.detail-product-image,
.product-card-image {
  will-change: transform;
}

[data-product-matrix] .product-detail,
[data-product-matrix] .detail-visual,
[data-product-matrix] [data-product-title],
[data-product-matrix] [data-product-desc],
[data-product-matrix] .detail-meta {
  transition: opacity 0.18s ease, transform 0.18s ease;
}

[data-product-matrix].is-switching .product-detail,
[data-product-matrix].is-switching .detail-visual,
[data-product-matrix].is-switching [data-product-title],
[data-product-matrix].is-switching [data-product-desc],
[data-product-matrix].is-switching .detail-meta {
  opacity: 0.42;
  transform: translateY(3px);
}

.product-card {
  min-height: 188px;
}

.product-card-header span:first-child {
  color: var(--gold-deep);
  font-weight: 820;
}

.product-detail h3 {
  color: var(--graphite);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.22;
  text-wrap: balance;
}

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

.detail-meta > div {
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.detail-meta strong {
  display: block;
  color: var(--graphite);
  font-size: 13px;
  margin-bottom: 4px;
}

.detail-meta p {
  margin: 0;
  font-size: 13px;
}

.product-next-panel {
  margin-top: 18px;
}

.product-next-panel .card {
  min-height: 176px;
}

.page-hero-card.security-card strong::before,
.admin-scope-card h3::before,
.upload-standard-card h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(185, 155, 82, 0.12);
  vertical-align: 0.08em;
}

.admin-scope-card ul,
.upload-standard-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.admin-scope-card li,
.upload-standard-card li {
  margin: 6px 0;
}

.admin-login-note {
  margin-top: 14px;
  color: var(--muted-2);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .hero-proof {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .proof-card {
    min-height: auto;
  }

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

  .announcement {
    left: 14px;
    right: 14px;
    bottom: 76px;
    width: auto;
    transform: none;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .section-head h2,
  .page-hero h1 {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .section-head {
    display: block;
    width: 100%;
  }

  .section-head > div,
  .section-head h2 {
    max-width: 100%;
  }

  .section-head h2 {
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.28;
    white-space: normal;
    text-wrap: wrap;
  }

  .product-layout,
  .product-grid,
  .product-detail,
  .page-hero-grid {
    min-width: 0;
  }

  .announcement {
    display: none;
  }

  body[data-page="products"] .section-head h2 {
    max-width: calc(100vw - 28px);
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  body[data-page="products"] .product-grid,
  body[data-page="products"] .grid-3 {
    grid-template-columns: 1fr;
  }

  body[data-page="products"] .product-card,
  body[data-page="products"] .product-detail,
  body[data-page="products"] .card {
    width: 100%;
    max-width: 100%;
  }

  body[data-page="products"] .product-card p,
  body[data-page="products"] .card p {
    max-width: 100%;
  }
}

/* v1.1-C hotfix: remove internal planning cards from public product page. */
.page-hero-wide {
  grid-template-columns: minmax(0, 1fr);
}

.page-hero-wide p {
  max-width: 860px;
}

.product-note-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product-note-card p {
  max-width: 760px;
}

.product-note-card .btn {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .product-note-card {
    display: grid;
  }
}

/* v1.1-C hotfix: tune white-gold ecosystem imagery, reducing glare without a grey veil. */
.strategy-ecosystem-visual {
  background: #eee9df;
}

.strategy-ecosystem-visual img {
  filter: saturate(1.02) contrast(1.06) brightness(0.92);
}

.strategy-ecosystem-visual::before {
  opacity: 0.22;
  mix-blend-mode: normal;
  background:
    radial-gradient(circle at 52% 40%, rgba(255, 255, 255, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(247, 242, 232, 0.24), rgba(255, 255, 255, 0.02) 44%, rgba(90, 98, 108, 0.06));
  animation: none;
}

.strategy-ecosystem-visual::after {
  opacity: 0.22;
  background: linear-gradient(90deg, transparent, rgba(185, 155, 82, 0.52), transparent);
  box-shadow: none;
}

.growth-panorama img,
.growth-lift-visual img {
  filter: saturate(1.02) contrast(1.03) brightness(1);
}

.growth-lift-visual::before {
  opacity: 0.1;
  mix-blend-mode: normal;
  background:
    linear-gradient(180deg, rgba(248, 246, 239, 0.3) 0%, rgba(248, 246, 239, 0.08) 28%, rgba(58, 64, 72, 0.06) 100%),
    radial-gradient(ellipse at 50% 21%, rgba(248, 232, 188, 0.2), transparent 21rem);
  animation: none;
}

.growth-lift-visual::after {
  opacity: 0.05;
  filter: blur(7px);
  mix-blend-mode: screen;
}

.growth-panorama::before {
  background:
    linear-gradient(180deg, rgba(248, 246, 239, 0.22) 0%, rgba(248, 246, 239, 0.06) 24%, rgba(35, 39, 45, 0.06) 100%),
    radial-gradient(ellipse at 50% 18%, rgba(248, 232, 188, 0.14), transparent 22rem);
}

.growth-panorama::after {
  opacity: 0.36;
  border-color: rgba(160, 133, 72, 0.3);
  border-bottom-color: rgba(255, 255, 255, 0.26);
  filter: drop-shadow(0 0 8px rgba(130, 106, 58, 0.14));
}

.growth-stream {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.68);
}

.growth-mark {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(12px);
}

@media (max-width: 900px) {
  .strategy-ecosystem-visual img {
    filter: saturate(1) contrast(1.06) brightness(0.9);
  }

  .growth-panorama img {
    filter: saturate(1) contrast(1.03) brightness(0.96);
  }

  .growth-lift-visual img {
    filter: saturate(1) contrast(1.03) brightness(0.96);
  }

  .growth-panorama::before {
    background:
      linear-gradient(180deg, rgba(248, 246, 239, 0.26) 0%, rgba(248, 246, 239, 0.08) 30%, rgba(35, 39, 45, 0.07) 100%);
  }
}
