:root {
  --bg: #f4f6fb;
  --bg-deep: #e6ebf7;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(28, 34, 60, 0.12);
  --line-strong: rgba(28, 34, 60, 0.2);
  --ink: #121627;
  --muted: #5d6480;
  --accent: #3e61ce;
  --accent-soft: #6d98f7;
  --accent-pale: #d3defc;
  --focus: #4577f7;
  --shadow: 0 24px 64px rgba(20, 26, 50, 0.08);
  --shadow-soft: 0 14px 40px rgba(20, 26, 50, 0.06);
  --max: 1260px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 228, 239, 0.9), transparent 32%),
    radial-gradient(circle at top right, rgba(228, 236, 242, 0.82), transparent 28%),
    linear-gradient(180deg, #f4f6fb 0%, #eef2fa 36%, #f5f7fc 100%);
  font-family: "SF Pro Display", "SF Pro JP", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ZC コーポレートサイトと同じヘッダー (全幅・透明 → スクロールで白のシアー) */













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

@media (max-width: 900px) {
  
  
  
}

.hero {
  padding: 0 0 42px;
}

.hero-panel,
.cta-shell {
  border: 1px solid rgba(20, 26, 50, 0.08);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(248, 251, 253, 0.9) 100%);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 760px;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: linear-gradient(180deg, #e3e9f6 0%, #dde4f3 100%);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 36%, rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(circle at 34% 62%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(90deg, rgba(223, 228, 231, 0.08) 0%, rgba(223, 228, 231, 0.02) 18%, rgba(238, 242, 244, 0.08) 40%, rgba(244, 246, 247, 0.8) 62%, rgba(246, 248, 249, 0.94) 100%);
  pointer-events: none;
}

.cta-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(248, 251, 253, 0.9) 100%);
}

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

.hero-visual {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(420px, 0.92fr);
  column-gap: clamp(48px, 7vw, 120px);
  align-items: start;
  padding: 162px min(6vw, 72px) 64px min(5vw, 56px);
}

.hero-overlay-node {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-overlay-node::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(223, 228, 231, 0.18) 0%, rgba(223, 228, 231, 0.06) 18%, rgba(238, 242, 244, 0.04) 40%, rgba(244, 246, 247, 0.48) 62%, rgba(246, 248, 249, 0.84) 100%);
  pointer-events: none;
}

.hero-overlay-node-field {
  width: 100%;
  height: 100%;
}

.hero-title-anchor {
  position: relative;
  z-index: 2;
  align-self: start;
  margin-top: 10px;
  color: var(--ink);
  font-family: "Helvetica Neue", "SF Pro Display", "Avenir Next", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: clamp(68px, 7.4vw, 120px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.88;
  max-width: 4.2ch;
}

.hero-title-anchor-en {
  display: block;
}

.hero-title-anchor-ja {
  display: block;
  margin-top: 12px;
  font-size: clamp(24px, 2vw, 36px);
  letter-spacing: 0.22em;
  text-align: left;
  color: rgba(22, 33, 43, 0.72);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  width: min(100%, 600px);
  margin-left: 0;
  margin-top: 44px;
  padding: 0;
  align-items: flex-start;
  text-align: left;
}

.eyebrow,
.panel-label,
.workspace-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(21, 27, 34, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(30, 79, 122, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: #3e61ce;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

h1,
h2,
h3,
h4 {
  font-family: "Helvetica Neue", "SF Pro Display", "Avenir Next", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(40px, 4.8vw, 70px);
  line-height: 0.99;
  max-width: 11.2em;
  font-weight: 700;
  letter-spacing: -0.022em;
  font-feature-settings: "palt" 1;
  text-wrap: pretty;
}

.hero-title-ja {
  display: block;
  max-width: 10em;
  letter-spacing: -0.028em;
  line-height: 1.03;
  text-align: left;
}

.lead {
  max-width: 32ch;
  margin: 0;
  color: rgba(39, 48, 57, 0.78);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.8;
}

.hero-actions,
.problem-grid,
.concept-grid,
.how-grid,
.output-grid,
.value-grid,
.company-grid {
  display: grid;
  gap: 18px;
}

.hero-actions {
  grid-template-columns: repeat(2, minmax(0, max-content));
  margin-top: 28px;
  justify-content: start;
}

.hero-note {
  max-width: 34ch;
  margin-top: 26px;
  color: rgba(39, 48, 57, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(180deg, #3e61ce 0%, #2d4694 100%);
  color: #fff;
  border-color: #2d4694;
  box-shadow: 0 12px 24px rgba(69, 119, 247, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.34);
  color: var(--ink);
}

.section .button-primary {
  background: linear-gradient(180deg, #3e61ce 0%, #1e2c63 100%);
  border-color: #1e2c63;
  box-shadow: 0 12px 24px rgba(24, 58, 87, 0.18);
}

.section .button-secondary,
.cta-section .button-secondary {
  background: rgba(255, 255, 255, 0.72);
}

.metric-card,
.info-card,
.workspace-card,
.output-card {
  border: 1px solid rgba(22, 33, 43, 0.08);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.metric-card {
  padding: 18px;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.metric-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-scroll-copy {
  max-width: 720px;
  margin: 20px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 78px 0 10px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.05;
}

.section-desc {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

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

.concept-grid,
.how-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

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

.info-card,
.workspace-card,
.output-card,
.cta-shell {
  padding: 24px;
}

.card-index {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(216, 230, 240, 0.78);
  font-size: 13px;
  font-weight: 700;
}

h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.15;
}

.info-card p,
.workspace-card p,
.output-card p,
.cta-copy p,
.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.concept-panel-large {
  padding: 28px;
}

.concept-panel-large p {
  max-width: 640px;
  color: var(--muted);
}

.concept-diagram {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.diagram-node {
  min-width: 110px;
  padding: 16px 18px;
  border: 1px solid rgba(30, 79, 122, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  text-align: center;
  font-weight: 700;
}

.diagram-node-accent {
  background: rgba(69, 119, 247, 0.16);
  border-color: rgba(62, 97, 206, 0.26);
}

.diagram-link {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(67, 109, 143, 0.32), rgba(67, 109, 143, 0.82));
}

.concept-stack {
  display: grid;
  gap: 14px;
}

.info-card-soft {
  background: rgba(249, 251, 252, 0.86);
}

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

.step-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(22, 33, 43, 0.08);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.step-no {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #f7f9fd;
  background: linear-gradient(180deg, #4577f7 0%, #2d4694 100%);
  font-size: 20px;
  font-weight: 700;
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.workspace-flow {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 14px;
  margin-top: 18px;
  align-items: center;
}

.flow-column h4 {
  margin: 0 0 14px;
  font-size: 16px;
}

.flow-column {
  padding: 20px;
  border: 1px solid rgba(22, 33, 43, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.mini-node {
  padding: 12px 14px;
  border: 1px solid rgba(22, 33, 43, 0.08);
  border-radius: 14px;
  background: rgba(245, 249, 251, 0.88);
  color: var(--ink);
  font-size: 13px;
}

.mini-node + .mini-node {
  margin-top: 10px;
}

.mini-node-strong {
  background: rgba(216, 230, 240, 0.82);
}

.flow-arrow {
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 95, 134, 0.22), rgba(47, 95, 134, 0.82));
  position: relative;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(47, 95, 134, 0.82);
  border-right: 2px solid rgba(47, 95, 134, 0.82);
  transform: translateY(-50%) rotate(45deg);
}

.output-card {
  min-height: 220px;
}

.output-icon {
  width: 74px;
  min-height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 230, 240, 0.82);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.info-card-wide {
  min-height: 210px;
}

.cta-section {
  padding: 84px 0 88px;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 22px;
  align-items: center;
}

.cta-copy h2 {
  margin-bottom: 12px;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

@media (max-width: 1040px) {
  .concept-grid,
  .how-grid,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-overlay {
    min-height: 640px;
    grid-template-columns: 1fr;
    column-gap: 0;
    align-items: end;
    padding: 120px 22px 28px;
  }

  .hero-title-anchor {
    margin-top: 0;
    max-width: none;
    font-size: clamp(52px, 9vw, 92px);
  }

  .hero-copy {
    width: min(100%, 720px);
    max-width: none;
    margin-left: 0;
    margin-top: 12px;
    padding: 0;
  }

  .problem-grid,
  .output-grid,
  .value-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 22px), var(--max));
  }

  .hero-panel {
    min-height: 420px;
  }

  .hero-actions,
  .workspace-flow,
  .cta-actions {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    width: 2px;
    height: 32px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(47, 95, 134, 0.22), rgba(47, 95, 134, 0.82));
  }

  .flow-arrow::after {
    right: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(50%) rotate(135deg);
  }

  .hero-overlay {
    min-height: 420px;
    padding: 102px 16px 28px;
  }

  .hero-copy {
    width: 100%;
    margin-top: 8px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 54px);
  }

  h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .concept-diagram {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .diagram-link {
    width: 1px;
    height: 22px;
    margin-left: 20px;
    background: linear-gradient(180deg, rgba(67, 109, 143, 0.32), rgba(67, 109, 143, 0.82));
  }
}

/* ===== FV 登場アニメーション（ノードフィールド フェードイン ＋ テキスト時間差フェードアップ） ===== */
@keyframes sn-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes sn-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes sn-pop {
  0% { opacity: 0; transform: translateY(16px) scale(0.98); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: none; }
}

.hero-overlay-node { animation: sn-fade 1600ms ease-out 150ms both; }
.hero-title-anchor { animation: sn-rise 900ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both; }
.hero-copy h1 { animation: sn-rise 900ms cubic-bezier(0.22, 1, 0.36, 1) 380ms both; }
.hero-copy .lead { animation: sn-rise 900ms cubic-bezier(0.22, 1, 0.36, 1) 540ms both; }
.hero-actions { animation: sn-pop 800ms cubic-bezier(0.22, 1, 0.36, 1) 700ms both; }

@media (prefers-reduced-motion: reduce) {
  .hero-overlay-node,
  .hero-title-anchor,
  .hero-copy h1,
  .hero-copy .lead,
  .hero-actions { animation: none !important; }
}

/* ===== FV リッチ登場: ノードネットワーク（丸＋線）が配線されていく演出 ===== */
.hero-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;              /* node-field(0) の上・テキスト(2) の下 */
  pointer-events: none;
  overflow: visible;
}
.fx-ring,
.fx-line {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
}
.fx-ring { stroke: rgba(69, 119, 247, 0.32); stroke-width: 1.4; }
.fx-line { stroke: rgba(69, 119, 247, 0.55); stroke-width: 1.6; }
.fx-dot {
  opacity: 0;
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center;
  fill: #3e61ce;
}
.fx-hub-dot { fill: #6d98f7; }
.fx-sweep {
  stroke: rgba(69, 119, 247, 0.85);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0;
}
.hero-fx-sweep { transform-origin: 560px 380px; opacity: 0; }

@keyframes fx-draw {
  0% { stroke-dashoffset: 1; opacity: 0; }
  12% { opacity: 0.95; }
  70% { stroke-dashoffset: 0; opacity: 0.95; }
  100% { stroke-dashoffset: 0; opacity: 0.22; }
}
@keyframes fx-dot-pop {
  0% { opacity: 0; transform: scale(0); }
  70% { opacity: 1; transform: scale(1.5); }
  100% { opacity: 0.5; transform: scale(1); }
}
@keyframes fx-sweep-spin {
  0% { transform: rotate(-30deg); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: rotate(690deg); opacity: 0; }
}

/* リング（丸）が描かれる */
.fx-ring--a { animation: fx-draw 1700ms cubic-bezier(0.22, 1, 0.36, 1) 200ms both; }
.fx-ring--b { animation: fx-draw 1600ms cubic-bezier(0.22, 1, 0.36, 1) 420ms both; }
/* レーダー・スイープ（線が一回転） */
.hero-fx-sweep { animation: fx-sweep-spin 2400ms cubic-bezier(0.3, 0.7, 0.2, 1) 300ms 1 both; }
/* ハブ→各ノードへ線が引かれる（時間差） */
.fx-line--1 { animation: fx-draw 900ms cubic-bezier(0.22, 1, 0.36, 1) 700ms both; }
.fx-line--2 { animation: fx-draw 900ms cubic-bezier(0.22, 1, 0.36, 1) 840ms both; }
.fx-line--3 { animation: fx-draw 900ms cubic-bezier(0.22, 1, 0.36, 1) 980ms both; }
.fx-line--4 { animation: fx-draw 900ms cubic-bezier(0.22, 1, 0.36, 1) 1120ms both; }
.fx-line--5 { animation: fx-draw 900ms cubic-bezier(0.22, 1, 0.36, 1) 1260ms both; }
/* ノード（丸）がポップ */
.fx-hub-dot { animation: fx-dot-pop 700ms cubic-bezier(0.22, 1, 0.36, 1) 500ms both; }
.fx-dot--1 { animation: fx-dot-pop 700ms cubic-bezier(0.22, 1, 0.36, 1) 1300ms both; }
.fx-dot--2 { animation: fx-dot-pop 700ms cubic-bezier(0.22, 1, 0.36, 1) 1440ms both; }
.fx-dot--3 { animation: fx-dot-pop 700ms cubic-bezier(0.22, 1, 0.36, 1) 1580ms both; }
.fx-dot--4 { animation: fx-dot-pop 700ms cubic-bezier(0.22, 1, 0.36, 1) 1720ms both; }
.fx-dot--5 { animation: fx-dot-pop 700ms cubic-bezier(0.22, 1, 0.36, 1) 1860ms both; }

@media (prefers-reduced-motion: reduce) {
  .hero-fx { display: none; }
}

/* RESEED 共通フッター（黒背景＋白ロゴ＋英字ナビ＋コピーライト） */
.site-footer {
  width: 100%;
  background: #0f1424;
  color: #dbe2f2;
}
.site-footer-inner {
  margin: 0 auto;
  width: min(1272px, calc(100% - 16px));
  padding: 48px 40px;
}
.site-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-footer-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}
.site-footer-nav {
  display: flex;
  gap: 36px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.03em;
}
.site-footer-nav a {
  color: #dbe2f2;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer-nav a:hover { color: #3e61ce; }
.site-footer-copy {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 900px) {
  .site-footer-nav { gap: 24px; font-size: 18px; }
}
@media (max-width: 480px) {
  .site-footer-inner { padding: 32px 16px; }
  .site-footer-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .site-footer-logo img { height: 24px; }
  .site-footer-nav { gap: 16px; font-size: 16px; flex-wrap: wrap; }
  .site-footer-copy { margin-top: 24px; padding-top: 16px; text-align: left; font-size: 12px; }
}

/* 見出しの各行を途中で折り返さない (スマホで「。」だけ次の行に落ちるのを防ぐ) */
.hero-title-ja .nw { white-space: nowrap; }

/* フッター: Service はリンクなし。PC はホバーで 3 サービス、スマホは並べて表示 */
.site-footer-nav .fn-drop{position:relative;display:inline-block}
.site-footer-nav .fn-top{cursor:default;transition:color .3s}
.site-footer-nav .fn-drop:hover .fn-top,.site-footer-nav .fn-drop:focus-within .fn-top{color:#F0B383}
.site-footer-nav .fn-pop{position:absolute;left:50%;bottom:100%;z-index:20;padding-bottom:12px;transform:translate(-50%,6px);opacity:0;visibility:hidden;pointer-events:none;transition:opacity .25s,transform .25s,visibility .25s}
.site-footer-nav .fn-drop:hover .fn-pop,.site-footer-nav .fn-drop:focus-within .fn-pop{opacity:1;visibility:visible;pointer-events:auto;transform:translate(-50%,0)}
.site-footer-nav .fn-list{list-style:none;margin:0;padding:.45rem;display:flex;flex-direction:column;gap:.1rem;background:rgba(20,22,40,.97);border:1px solid rgba(255,255,255,.12);border-radius:12px;box-shadow:0 18px 40px -18px rgba(0,0,0,.6)}
.site-footer-nav .fn-list a{display:flex;align-items:center;gap:.55rem;padding:.45rem .7rem;border-radius:8px;white-space:nowrap;color:#E6E8F4}
.site-footer-nav .fn-list a:hover{background:rgba(255,255,255,.07);color:#F0B383}
.site-footer-nav .fn-list img{width:18px;height:18px;flex:0 0 auto}
@media (max-width:900px){
  .site-footer-nav .fn-drop,.site-footer-nav .fn-pop,.site-footer-nav .fn-list,.site-footer-nav .fn-list li{display:contents}
  .site-footer-nav .fn-pop{visibility:visible;opacity:1;pointer-events:auto}
  .site-footer-nav .fn-top,.site-footer-nav .fn-list img{display:none}
  .site-footer-nav .fn-list a{display:inline;padding:0;color:inherit;background:none}
}
