/* Consolidated styles for Space365 static pages. Page sections are scoped by body.page-* classes. */


/* index.html */
:root {
--f-sans: 'Space Grotesk', 'PingFang SC', 'HarmonyOS Sans SC', sans-serif;
  --f-serif: 'Instrument Serif', 'Songti SC', Georgia, serif;


  --bg:        oklch(0.10 0.008 240);
  --bg-2:      oklch(0.14 0.009 240);
  --bg-3:      oklch(0.18 0.010 240);
  --fg:        oklch(0.97 0.005 240);
  --fg-soft:   oklch(0.72 0.010 240);
  --fg-mute:   oklch(0.50 0.010 240);
  --line:      oklch(0.97 0.005 240 / 0.08);
  --line-mid:  oklch(0.97 0.005 240 / 0.16);
  --accent: oklch(0.72 0.150 65);
  --accent-2: oklch(0.68 0.130 45);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 64px; }

body.theme-light {
--bg:        oklch(0.99 0.002 240);
  --bg-2:      oklch(0.96 0.004 240);
  --bg-3:      oklch(0.92 0.006 240);
  --fg:        oklch(0.14 0.012 240);
  --fg-soft:   oklch(0.38 0.010 240);
  --fg-mute:   oklch(0.58 0.008 240);
  --line:      oklch(0.14 0.012 240 / 0.07);
  --line-mid:  oklch(0.14 0.012 240 / 0.14); }

body.theme-hybrid .section-light {
--bg: oklch(0.99 0.002 240);
  --bg-2: oklch(0.96 0.004 240);
  --bg-3: oklch(0.92 0.006 240);
  --fg: oklch(0.14 0.012 240);
  --fg-soft: oklch(0.38 0.010 240);
  --fg-mute: oklch(0.58 0.008 240);
  --line: oklch(0.14 0.012 240 / 0.07);
  --line-mid: oklch(0.14 0.012 240 / 0.14); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.page-index {
font-family: var(--f-sans);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s var(--ease-out), color 0.3s;
  overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

body.page-index .reveal {
opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
body.page-index .reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.nav {
position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 48px;
  gap: 40px;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s; }
.nav.scrolled {
background: oklch(0.10 0.008 240 / 0.85);
  border-color: var(--line);
  backdrop-filter: blur(20px); }
body.theme-light .nav.scrolled { background: oklch(0.99 0.002 240 / 0.90); }
.nav__logo {
flex-shrink: 0;
  display: flex;
  align-items: center; }
.logo-full { display: block; height: 24px; width: auto; }

.logo-text-path { fill: var(--fg); transition: fill 0.3s; }
.nav__links {
display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto; }
.nav__links a {
font-size: 14px;
  font-weight: 400;
  color: var(--fg-soft);
  transition: color 0.2s;
  letter-spacing: 0.01em; }
.nav__links a:hover { color: var(--fg); }
.nav__cta {
margin-left: 24px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bg);
  background: var(--fg);
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0; }
.nav__cta:hover { opacity: 0.85; }

body.page-index .hero {
position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 48px 80px;
  overflow: hidden; }
body.page-index .hero::before {
content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, oklch(from var(--accent) l c h / 0.10) 0%, transparent 70%);
  pointer-events: none; }

body.page-index .hero::after {
content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 80%);
  pointer-events: none; }
.hero__eyebrow {
display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid oklch(from var(--accent) l c h / 0.35);
  padding: 5px 14px;
  border-radius: var(--r-sm);
  margin-bottom: 32px; }
.hero__eyebrow::before {
content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
body.page-index .hero__title {
font-size: clamp(40px, 6vw, 84px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--fg);
  max-width: 900px;
  text-wrap: balance;
  margin-bottom: 28px; }
body.page-index .hero__title em {
font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent); }
body.page-index .hero__sub {
font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--fg-soft);
  max-width: 820px;
  line-height: 1.65;
  text-wrap: pretty;
  margin-bottom: 48px; }
body.page-index .hero__actions {
display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center; }
body.page-index .hero-product-shot {
position: relative;
  z-index: 1;
  width: min(960px, 100%);
  margin: 58px auto 0;
  padding: 10px;
  border-radius: 28px;
  background: oklch(from var(--accent) l c h / 0.45);
  animation: heroProductIn 0.75s var(--ease-out) 0.18s both;
  box-shadow: 0 34px 90px oklch(0 0 0 / 0.24); }
@keyframes heroProductIn {
  from { opacity: 0; transform: translateY(28px) scale(0.985); }
  to { opacity: 1; transform: none; }
}
body.page-index .hero-product-image {
display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.65); }
@media (max-width: 980px) {
  body.page-index .hero-product-shot { width: 100%; }
}
@media (max-width: 640px) {
  body.page-index .hero-product-shot { display: none; }
}
body.page-index .btn-primary {
display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--f-sans);
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
  letter-spacing: -0.01em; }
body.page-index .btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
body.page-index .btn-ghost {
display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--f-sans);
  color: var(--fg-soft);
  background: none;
  border: 1px solid var(--line-mid);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
  letter-spacing: -0.01em; }
body.page-index .btn-ghost:hover { color: var(--fg); border-color: var(--line-mid); transform: translateY(-1px); }

.hero__scroll {
position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--fg-mute);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: none; }
.hero__scroll-line {
width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--line-mid), transparent);
  animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.section {
padding: 120px 48px;
  background: var(--bg);
  transition: background 0.4s; }
body.page-index .section-alt { background: var(--bg-2); }
.section-light { background: var(--bg); }

.container {
max-width: 1140px;
  margin: 0 auto; }
.section__label {
font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: none;
  color: var(--accent);
  margin-bottom: 20px; }
body.page-index .section__title {
font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--fg);
  max-width: 680px;
  text-wrap: balance;
  margin-bottom: 20px; }
body.page-index .section__sub {
font-size: 17px;
  font-weight: 400;
  color: var(--fg-soft);
  line-height: 1.7;
  max-width: 560px;
  text-wrap: pretty; }

.logos-strip {
padding: 48px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center; }
.logos-strip__label {
font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--fg-mute);
  text-transform: none;
  margin-bottom: 28px; }
.logos-strip__row {
display: flex;
  align-items: center;
  gap: 56px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%); }
.logos-track {
display: flex;
  align-items: center;
  gap: 56px;
  animation: marquee 30s linear infinite;
  flex-shrink: 0; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-placeholder {
font-size: 13px;
  font-weight: 500;
  color: var(--fg-mute);
  letter-spacing: 0.05em;
  opacity: 0.6; }
.brand-logo {
height: 72px;
  width: auto;
  opacity: 0.6;
  filter: invert(1) grayscale(1);
  transition: opacity 0.2s;
  flex-shrink: 0; }
.brand-logo:hover { opacity: 0.9; }
body.theme-light .brand-logo { filter: grayscale(1); }

.nav__dropdown { position: relative; }
.nav__dropdown-toggle { font-size: 14px; font-weight: 400; color: var(--fg-soft); transition: color 0.2s; letter-spacing: 0.01em; cursor: pointer; display: flex; align-items: center; gap: 4px; background: none; border: none; font-family: var(--f-sans); padding: 0; }
.nav__dropdown-toggle:hover { color: var(--fg); }
.nav__dropdown-toggle i { font-size: 12px; transition: transform 0.2s; }
.nav__dropdown.open .nav__dropdown-toggle i { transform: rotate(180deg); }
.nav__dropdown-menu { position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%) translateY(-4px); background: var(--bg-2); border: 1px solid var(--line-mid); border-radius: var(--r-md); padding: 6px; min-width: 200px; opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; }
.nav__dropdown.open .nav__dropdown-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav__dropdown-item { display: flex; flex-direction: column; padding: 10px 14px; border-radius: 6px; transition: background 0.15s; }
.nav__dropdown-item:hover { background: var(--bg-3); }
.nav__dropdown-item-title { font-size: 14px; font-weight: 500; color: var(--fg); }
.nav__dropdown-item-sub { font-size: 12px; color: var(--fg-mute); margin-top: 2px; }
.nav__dropdown-menu--wide { min-width: 320px; }
.nav__dropdown-separator { height: 1px; background: var(--line); margin: 6px 8px; }

body.page-index .nav__hamburger {
display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto; }
body.page-index .nav__hamburger span {
display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s; }

.mobile-menu {
position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 0 24px 40px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu__header {
display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px; }
.mobile-menu__close {
display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--fg-soft);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s; }
.mobile-menu__close:hover { color: var(--fg); }
.mobile-menu__links {
display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 16px; }
.mobile-menu__link {
font-size: 22px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s; }

.mobile-menu__group { border-bottom: 1px solid var(--line); }
.mobile-menu__group-toggle {
display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 22px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--f-sans);
  cursor: pointer;
  transition: color 0.2s; }
.mobile-menu__group-toggle:hover { color: var(--accent); }
.mobile-menu__group-toggle i { font-size: 16px; transition: transform 0.25s; }
.mobile-menu__group.open .mobile-menu__group-toggle i { transform: rotate(180deg); }
body.page-index .mobile-menu__sub {
display: none;
  flex-direction: column;
  padding-bottom: 12px;
  gap: 0; }
body.page-index .mobile-menu__group.open .mobile-menu__sub { display: flex; }
.mobile-menu__sub-link {
display: flex;
  flex-direction: column;
  padding: 14px 16px;
  border-radius: 8px;
  transition: background 0.15s; }
.mobile-menu__sub-link:hover { background: var(--bg-2); }
.mobile-menu__sub-link-title { font-size: 17px; font-weight: 500; color: var(--fg); }
.mobile-menu__sub-link-sub { font-size: 13px; color: var(--fg-mute); margin-top: 2px; }
.mobile-menu__sub-separator { height: 1px; background: var(--line); margin: 8px 16px; }

.mobile-menu__cta {
display: block;
  text-align: center;
  margin-top: 32px;
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s; }
.mobile-menu__cta:hover { background: var(--accent); color: #fff; }
.mobile-menu__backdrop {
display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: oklch(0 0 0 / 0.4); }
.mobile-menu__backdrop.open { display: block; }

@media (max-width: 640px) {.nav { padding: 0 20px; gap: 0; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  body.page-index .nav__hamburger { display: flex; }


  body.page-index .hero { padding: calc(var(--nav-h) + 40px) 24px 60px; }
  body.page-index .hero__actions { flex-direction: column; align-items: stretch; }
  body.page-index .hero__actions .btn-primary, body.page-index .hero__actions .btn-ghost { text-align: center; }


  .section { padding: 72px 24px; }
  .logos-strip { padding: 32px 0; }


  .brand-logo { height: 44px; }
  .logos-track { gap: 36px; }

  .cta-form { flex-direction: column; }
}

.capabilities-intro {
display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
  flex-wrap: wrap; }
.cap-grid {
display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; }
@media (max-width: 900px) {.cap-grid { grid-template-columns: 1fr 1fr; }}
@media (max-width: 580px) {.cap-grid { grid-template-columns: 1fr; }}
body.page-index .cap-card {
background: var(--bg-2);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.25s; }
body.page-index .cap-card:hover { background: var(--bg-3); }
body.page-index .cap-card:hover .cap-arrow { opacity: 1; transform: translate(0, 0); }
body.page-index .cap-num { font-size: 32px; font-weight: 700; color: oklch(from var(--accent) l c h / 0.32); letter-spacing: -0.04em; margin-bottom: 16px; font-variant-numeric: tabular-nums; line-height: 1; }
.cap-icon {
width: 40px;
  height: 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(from var(--accent) l c h / 0.08);
  border-radius: var(--r-sm); }
.cap-icon i { font-size: 24px; color: var(--accent); }
body.page-index .cap-title {
font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.3; }
.cap-title-en {
font-size: 11px;
  font-weight: 400;
  color: var(--fg-mute);
  letter-spacing: 0.06em;
  text-transform: none;
  margin-bottom: 16px; }
body.page-index .cap-desc {
font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.7;
  font-weight: 400; }
.cap-output {
margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--fg-mute);
  display: flex;
  align-items: center;
  gap: 6px; }
.cap-output::before {
content: '→';
  color: var(--accent); }
.cap-arrow {
position: absolute;
  top: 32px; right: 32px;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.2s, transform 0.2s;
  color: var(--fg-mute);
  font-size: 16px; }

.home-section-head { max-width: 760px; }

.home-scenario-grid {
display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--line); }

.home-scenario-card, .home-case-card {
position: relative;
  min-height: 360px;
  padding: 40px 36px;
  background: var(--bg);
  overflow: hidden;
  transition: background 0.25s; }

.home-scenario-card::before, .home-case-card::before {
content: '';
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 180px;
  background: radial-gradient(ellipse at center, oklch(from var(--accent) l c h / 0.12), transparent 68%);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none; }

.home-scenario-card:hover, .home-case-card:hover { background: var(--bg-2); }

.home-scenario-card:hover::before, .home-case-card:hover::before {
opacity: 1;
  transform: translateY(-8px); }

.home-card-icon {
width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid oklch(from var(--accent) l c h / 0.14);
  border-radius: var(--r-sm);
  background: oklch(from var(--accent) l c h / 0.09);
  color: var(--accent); }

.home-card-icon i { font-size: 24px; }

.home-scenario-kicker {
display: inline-flex;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 14px; }

.home-scenario-card h3, .home-case-card h3 {
color: var(--fg);
  font-size: 24px;
  line-height: 1.28;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin-bottom: 22px; }

.home-scenario-card p, .home-case-card p {
color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.78; }

.home-card-link {
position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  transition: gap 0.2s; }

.home-card-link:hover { gap: 12px; }

#capabilities .capabilities-intro { max-width: 760px; }

body.page-index #capabilities .section__sub { margin-top: 6px; }

#capabilities .cap-grid { grid-template-columns: repeat(2, 1fr); }

body.page-index #capabilities .cap-card { min-height: 300px; }

.cap-card--summary {
min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: oklch(from var(--accent) l c h / 0.08);
  border-left: 2px solid var(--accent); }

body.page-index #capabilities .cap-card--summary { grid-column: 1 / -1; }

.cap-card--summary p {
color: var(--fg);
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.025em;
  font-weight: 600;
  max-width: 520px; }

.home-cases-head {
display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px; }

.home-logo-wall {
display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--line); }

.home-logo-wall span {
min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: var(--bg-2);
  color: var(--fg);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  text-align: center; }

.home-logo-wall img {
width: auto;
  height: 68px;
  max-width: 240px;
  object-fit: contain;
  opacity: 0.86; }

body.theme-light .home-logo-wall img { filter: grayscale(1); }

.home-case-grid {
display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--line); }

.home-case-card { min-height: 340px; }

.home-case-metrics {
display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px; }

.home-case-metrics span {
display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid oklch(from var(--accent) l c h / 0.18);
  border-radius: 999px;
  background: oklch(from var(--accent) l c h / 0.08);
  color: var(--accent);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500; }

@media (max-width: 900px) {
  .home-scenario-grid, .home-logo-wall { grid-template-columns: 1fr 1fr; }

  .home-case-grid, #capabilities .cap-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .home-scenario-grid, .home-logo-wall, .home-case-grid { grid-template-columns: 1fr; }

  .home-section-head, .home-cases-head { display: block; }

  body.page-index .home-cases-head .btn-ghost { margin-top: 24px; }

  .home-scenario-card, .home-case-card {
min-height: auto;
    padding: 32px 28px; }

  .home-card-link {
position: static;
    margin-top: 28px; }
}

body.page-index .cta-section {
padding: 120px 48px;
  background: var(--bg-2);
  text-align: center;
  position: relative;
  overflow: hidden; }
body.page-index .cta-section::before {
content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, oklch(from var(--accent) l c h / 0.08) 0%, transparent 70%);
  pointer-events: none; }
body.page-index .cta-title {
font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
  max-width: 700px;
  margin: 0 auto 20px;
  text-wrap: balance;
  line-height: 1.1; }
body.page-index .cta-title em {
font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent); }
body.page-index .cta-sub {
font-size: 17px;
  color: var(--fg-soft);
  font-weight: 400;
  margin-bottom: 48px;
  line-height: 1.6; }
.cta-form {
display: flex;
  gap: 12px;
  max-width: none;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center; }
.cta-note {
margin-top: 16px;
  font-size: 13px;
  color: var(--fg-mute); }

/* platform.html */
:root {
--f-sans: 'Space Grotesk', 'PingFang SC', 'HarmonyOS Sans SC', sans-serif;
  --f-serif: 'Instrument Serif', 'Songti SC', Georgia, serif;
  --bg:        oklch(0.10 0.008 240);
  --bg-2:      oklch(0.14 0.009 240);
  --bg-3:      oklch(0.18 0.010 240);
  --fg:        oklch(0.97 0.005 240);
  --fg-soft:   oklch(0.72 0.010 240);
  --fg-mute:   oklch(0.50 0.010 240);
  --line:      oklch(0.97 0.005 240 / 0.08);
  --line-mid:  oklch(0.97 0.005 240 / 0.16);
  --accent: oklch(0.72 0.150 65);
  --accent-2: oklch(0.68 0.130 45);
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 64px; }


html { scroll-behavior: smooth; }
body.page-platform { font-family: var(--f-sans); background: var(--bg); color: var(--fg); -webkit-font-smoothing: antialiased; overflow-x: hidden; transition: background 0.4s, color 0.3s; }


body.page-platform .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
body.page-platform .reveal.visible { opacity: 1; transform: none; }
 
 



























body.page-platform .nav__hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
body.page-platform .nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--fg); border-radius: 2px; }







.mobile-menu__link:hover { color: var(--accent); }






body.page-platform .mobile-menu__sub { display: none; flex-direction: column; padding-bottom: 12px; }
body.page-platform .mobile-menu__group.open .mobile-menu__sub { display: flex; }










body.page-platform .hero { position: relative; min-height: 100vh; width: min(1140px, calc(100% - 96px)); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.86fr); align-items: center; gap: clamp(36px, 5vw, 72px); text-align: left; padding: calc(var(--nav-h) + 84px) 0 84px; overflow: visible; }
body.page-platform .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, oklch(from var(--accent) l c h / 0.12) 0%, transparent 70%); pointer-events: none; }
body.page-platform .hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 80%); pointer-events: none; }

body.page-platform .platform-hero__content { position: relative; z-index: 1; max-width: 560px; }
body.page-platform .hero__title { font-size: clamp(34px, 4.2vw, 58px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; color: var(--fg); max-width: 560px; text-wrap: balance; margin-bottom: 20px; }
body.page-platform .hero__subtitle {
font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 400;
  color: var(--fg-mute);
  max-width: 680px;
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px; }
.hero__subtitle-item {
padding: 4px 14px;
  border: 1px solid var(--line-mid);
  border-radius: 999px;
  white-space: nowrap;
  font-size: 13px; }
body.page-platform .hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start; }
body.page-platform .platform-hero__visual {
position: relative;
  z-index: 1;
  justify-self: end;
  width: min(460px, 100%);
  margin: 0;
  padding: 0; }
body.page-platform .platform-hero__visual img {
display: block;
  width: 100%;
  height: auto; }
body.page-platform .btn-primary { padding: 13px 28px; font-size: 15px; font-weight: 500; font-family: var(--f-sans); color: #fff; background: var(--accent); border: none; border-radius: var(--r-sm); cursor: pointer; transition: transform 0.15s, opacity 0.15s; letter-spacing: -0.01em; }
body.page-platform .btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
body.page-platform .btn-ghost { padding: 13px 28px; font-size: 15px; font-weight: 400; font-family: var(--f-sans); color: var(--fg-soft); background: none; border: 1px solid var(--line-mid); border-radius: var(--r-sm); cursor: pointer; transition: color 0.2s, border-color 0.2s, transform 0.15s; letter-spacing: -0.01em; display: flex; align-items: center; gap: 8px; }
body.page-platform .btn-ghost:hover { color: var(--fg); transform: translateY(-1px); }


body.page-platform .section-alt { background: var(--bg-2); }


body.page-platform .section__title { font-size: clamp(26px, 3vw, 44px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.15; color: var(--fg); max-width: 680px; text-wrap: balance; margin-bottom: 16px; }
body.page-platform .section__sub { font-size: 17px; font-weight: 400; color: var(--fg-soft); line-height: 1.7; max-width: 560px; text-wrap: pretty; }
.divider-line { width: 40px; height: 1px; background: var(--accent); margin: 24px 0; }

.cap-grid-5 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 56px; }
@media (max-width: 1100px) {.cap-grid-5 { grid-template-columns: repeat(2, 1fr); }}
@media (max-width: 640px) {.cap-grid-5 { grid-template-columns: 1fr; }}
body.page-platform .cap-card { background: var(--bg-2); padding: 32px; display: grid; grid-template-columns: auto 1fr; grid-template-areas: "icon num" "title title" "desc desc"; gap: 0 18px; align-items: start; transition: background 0.2s; cursor: default; }
body.page-platform .cap-card:hover { background: var(--bg-3); }
body.page-platform .cap-num { grid-area: num; justify-self: end; color: oklch(from var(--accent) l c h / 0.36); font-size: 34px; font-weight: 700; line-height: 1; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.cap-icon-wrap { grid-area: icon; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; background: oklch(from var(--accent) l c h / 0.08); border-radius: var(--r-sm); }
.cap-icon-wrap i { font-size: 24px; color: var(--accent); }
body.page-platform .cap-title { grid-area: title; font-size: 20px; font-weight: 600; color: var(--fg); letter-spacing: -0.015em; margin-bottom: 10px; line-height: 1.3; }
body.page-platform .cap-desc { grid-area: desc; font-size: 14px; color: var(--fg-soft); line-height: 1.65; font-weight: 400; }

.access-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
@media (max-width: 900px) {.access-grid { grid-template-columns: 1fr 1fr; }}
@media (max-width: 580px) {.access-grid { grid-template-columns: 1fr; }}
.access-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 36px 28px; transition: border-color 0.2s, transform 0.2s; }
.access-card:hover { border-color: var(--accent); transform: translateY(-2px); }
body.page-platform .access-num { font-size: 32px; font-weight: 700; color: oklch(from var(--accent) l c h / 0.32); letter-spacing: -0.04em; margin-bottom: 16px; font-variant-numeric: tabular-nums; line-height: 1; }
.access-title { font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 12px; letter-spacing: -0.01em; line-height: 1.3; }
.access-desc { font-size: 14px; color: var(--fg-soft); line-height: 1.65; font-weight: 400; }

.guarantee-grid { counter-reset: guarantee; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 56px; }
@media (max-width: 1100px) {.guarantee-grid { grid-template-columns: 1fr 1fr; }}
@media (max-width: 580px) {.guarantee-grid { grid-template-columns: 1fr; }}
.guarantee-card { counter-increment: guarantee; background: var(--bg-2); padding: 32px; display: grid; grid-template-columns: auto 1fr; grid-template-areas: "icon num" "title title" "desc desc"; gap: 0 18px; align-items: start; transition: background 0.2s; }
.guarantee-card:hover { background: var(--bg-3); }
.guarantee-card::after { content: counter(guarantee, decimal-leading-zero); grid-area: num; justify-self: end; color: oklch(from var(--accent) l c h / 0.36); font-size: 34px; font-weight: 700; line-height: 1; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.guarantee-card i { grid-area: icon; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--accent); margin-bottom: 22px; background: oklch(from var(--accent) l c h / 0.08); border-radius: var(--r-sm); }
.guarantee-title { grid-area: title; font-size: 20px; font-weight: 600; color: var(--fg); margin-bottom: 10px; letter-spacing: -0.015em; line-height: 1.3; }
.guarantee-desc { grid-area: desc; font-size: 14px; color: var(--fg-soft); line-height: 1.65; font-weight: 400; }

body.page-platform .cta-section { padding: 120px 48px; text-align: center; background: var(--bg-2); position: relative; overflow: hidden; }
body.page-platform .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 100%, oklch(from var(--accent) l c h / 0.08) 0%, transparent 70%); pointer-events: none; }
body.page-platform .cta-title { font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; letter-spacing: -0.03em; color: var(--fg); max-width: 600px; margin: 0 auto 16px; text-wrap: balance; line-height: 1.15; }
body.page-platform .cta-sub { font-size: 16px; color: var(--fg-soft); font-weight: 400; margin-bottom: 40px; }

footer { padding: 40px 48px; background: var(--bg); border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer__copy { font-size: 12px; color: var(--fg-mute); }

.footer-settings { display: flex; align-items: center; justify-content: flex-end; gap: 48px; padding: 20px 48px; background: var(--bg); border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer-settings__group { display: flex; align-items: center; gap: 12px; }
.footer-settings__label { font-size: 12px; color: var(--fg-mute); letter-spacing: 0.06em; white-space: nowrap; }
.footer-settings__opts { display: flex; gap: 4px; }
.footer-opt { padding: 5px 12px; font-size: 12px; font-family: var(--f-sans); color: var(--fg-mute); background: none; border: 1px solid var(--line); border-radius: 4px; cursor: pointer; transition: color 0.15s, border-color 0.15s, background 0.15s; display: flex; align-items: center; gap: 6px; }
.footer-opt:hover { color: var(--fg); border-color: var(--line-mid); }
.footer-opt.active { color: var(--accent); border-color: var(--accent); background: oklch(from var(--accent) l c h / 0.08); }
.footer-opt--color span { width: 8px; height: 8px; border-radius: 50%; background: var(--c); flex-shrink: 0; }

@media (max-width: 980px) {
  body.page-platform .hero {
    grid-template-columns: 1fr;
    width: auto;
    min-height: auto;
    text-align: center;
    padding: calc(var(--nav-h) + 72px) 32px 72px; }
  body.page-platform .platform-hero__content {
    justify-self: center;
    max-width: 720px; }
  body.page-platform .hero__title { max-width: 720px; }
  body.page-platform .hero__subtitle, body.page-platform .hero__actions { justify-content: center; }
  body.page-platform .platform-hero__visual {
    justify-self: center;
    width: min(460px, 100%); }
}

@media (max-width: 640px) {
  
  
  body.page-platform .nav__hamburger { display: flex; }
  body.page-platform .hero { padding: calc(var(--nav-h) + 40px) 24px 60px; }
  body.page-platform .platform-hero__visual { display: none; }
  body.page-platform .hero__actions { flex-direction: column; align-items: stretch; }
  body.page-platform .hero__actions .btn-primary, body.page-platform .hero__actions .btn-ghost { text-align: center; justify-content: center; }
  
  footer { padding: 32px 24px; }
  footer .footer__copy { text-align: center; width: 100%; }
  .footer-settings { flex-direction: column; gap: 20px; padding: 20px 24px; }
  .footer-settings__group { flex-wrap: wrap; justify-content: center; }}

/* dock.html */
:root {
--f-sans: 'Space Grotesk', 'PingFang SC', 'HarmonyOS Sans SC', sans-serif;
  --f-serif: 'Instrument Serif', 'Songti SC', Georgia, serif;
  --bg:        oklch(0.10 0.008 240);
  --bg-2:      oklch(0.14 0.009 240);
  --bg-3:      oklch(0.18 0.010 240);
  --fg:        oklch(0.97 0.005 240);
  --fg-soft:   oklch(0.72 0.010 240);
  --fg-mute:   oklch(0.50 0.010 240);
  --line:      oklch(0.97 0.005 240 / 0.08);
  --line-mid:  oklch(0.97 0.005 240 / 0.16);
  --accent: oklch(0.72 0.150 65);
  --accent-2: oklch(0.68 0.130 45);
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 64px; }


html { scroll-behavior: smooth; }
body.page-dock { font-family: var(--f-sans); background: var(--bg); color: var(--fg); -webkit-font-smoothing: antialiased; overflow-x: hidden; transition: background 0.4s, color 0.3s; }


body.page-dock .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
body.page-dock .reveal.visible { opacity: 1; transform: none; }































body.page-dock .nav__hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
body.page-dock .nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--fg); border-radius: 2px; }













body.page-dock .mobile-menu__sub { display: none; flex-direction: column; padding-bottom: 12px; }
body.page-dock .mobile-menu__group.open .mobile-menu__sub { display: flex; }










body.page-dock .btn-primary { padding: 13px 28px; font-size: 15px; font-weight: 500; font-family: var(--f-sans); color: #fff; background: var(--accent); border: none; border-radius: var(--r-sm); cursor: pointer; transition: transform 0.15s, opacity 0.15s; letter-spacing: -0.01em; }
body.page-dock .btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
body.page-dock .btn-ghost { padding: 13px 28px; font-size: 15px; font-weight: 400; font-family: var(--f-sans); color: var(--fg-soft); background: none; border: 1px solid var(--line-mid); border-radius: var(--r-sm); cursor: pointer; transition: color 0.2s, border-color 0.2s, transform 0.15s; letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 8px; }
body.page-dock .btn-ghost:hover { color: var(--fg); transform: translateY(-1px); }
.accent-text { color: var(--accent); }


body.page-dock .section-alt { background: oklch(0.12 0.008 240); }
body.page-dock.theme-light .section-alt { background: oklch(0.975 0.004 240); }


body.page-dock .section__title { font-size: clamp(26px, 3vw, 44px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.15; color: var(--fg); max-width: 680px; text-wrap: balance; margin-bottom: 16px; }
.section__title--wide { max-width: 1120px; text-wrap: normal; word-break: keep-all; }
body.page-dock .section__sub { font-size: 17px; font-weight: 400; color: var(--fg-soft); line-height: 1.7; max-width: 560px; text-wrap: pretty; }


body.page-dock .hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; text-align: left; padding: calc(var(--nav-h) + 88px) max(48px, calc((100vw - 1140px) / 2)) 96px; overflow: hidden; background: var(--bg); }
body.page-dock .hero::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--bg) 0%, oklch(from var(--bg) l c h / 0.94) 32%, oklch(from var(--bg) l c h / 0.46) 54%, transparent 76%); pointer-events: none; }
body.page-dock .hero::after { content: ''; position: absolute; inset: auto 0 0; z-index: 1; height: 28%; background: linear-gradient(to bottom, transparent, var(--bg)); pointer-events: none; }
body.page-dock .dock-hero__image {
position: absolute;
  inset: var(--nav-h) 0 0;
  z-index: 0;
  width: 100%;
  height: calc(100% - var(--nav-h));
  object-fit: cover;
  object-position: 50% 40%;}
body.page-dock .hero > :not(.dock-hero__image) {
position: relative;
  z-index: 2; }

body.page-dock .hero__title { font-size: clamp(34px, 4.2vw, 58px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; color: var(--fg); max-width: 720px; text-wrap: balance; margin-bottom: 20px; }
body.page-dock .hero__lead {
max-width: 620px;
  margin: 0 0 24px;
  color: var(--fg-soft);
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 400;
  line-height: 1.75;
  text-wrap: balance; }
body.page-dock .hero__subtitle {
font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 400;
  color: var(--fg-mute);
  max-width: 680px;
  margin-bottom: 36px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px; }

body.page-dock .hero__sub { font-size: 14px; color: var(--fg-mute); margin-bottom: 40px; padding: 8px 20px; border: 1px solid var(--line); border-radius: 999px; display: inline-block; }
body.page-dock .hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start; }

.pain-grid {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-top: 56px; }
@media (max-width: 980px) {.pain-grid { grid-template-columns: 1fr; }}
.pain-card {
min-height: 280px;
  background: var(--bg-2);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.2s; }
.pain-card:hover { background: var(--bg-3); }
.pain-icon {
width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: oklch(from var(--accent) l c h / 0.08);
  border-radius: var(--r-sm);
  margin-bottom: 28px; }
.pain-icon i { font-size: 24px; }
.pain-card h3 {
margin: 0 0 20px;
  color: var(--fg);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em; }
.pain-card p {
margin: auto 0 0;
  color: var(--fg-soft);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8; }

.scene-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 56px; }
@media (max-width: 640px) {.scene-grid { grid-template-columns: 1fr; }}
.scene-card { min-height: 156px; background: var(--bg-2); padding: 30px; display: grid; grid-template-columns: auto 1fr; grid-template-areas: "icon num" "text text"; gap: 22px 18px; align-items: start; transition: background 0.2s; }
.scene-card:hover { background: var(--bg-3); }
.scene-card i { grid-area: icon; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--accent); background: oklch(from var(--accent) l c h / 0.08); border-radius: var(--r-sm); }
.scene-num { grid-area: num; justify-self: end; color: oklch(from var(--accent) l c h / 0.36); font-size: 34px; font-weight: 700; line-height: 1; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.scene-text { grid-area: text; max-width: 360px; font-size: 20px; font-weight: 500; color: var(--fg); line-height: 1.45; letter-spacing: -0.015em; }

.dock-definition {
margin-top: 52px;
  padding: 48px;
  background: linear-gradient(180deg, oklch(from var(--accent) l c h / 0.08), var(--bg-2));
  border: 1px solid oklch(from var(--accent) l c h / 0.16); }
.definition-statement {
max-width: 860px;
  margin: 0;
  color: var(--fg);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-wrap: balance; }
.definition-equation {
max-width: 760px;
  margin: 28px 0 0;
  color: var(--fg-soft);
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 400;
  line-height: 1.7; }
.pillar-grid {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-top: 2px; }
@media (max-width: 900px) {.pillar-grid { grid-template-columns: 1fr; }}
.pillar-card {
min-height: 240px;
  background: var(--bg-2);
  padding: 34px;
  transition: background 0.2s; }
.pillar-card:hover { background: var(--bg-3); }
.pillar-icon {
width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: oklch(from var(--accent) l c h / 0.08);
  border-radius: var(--r-sm);
  margin-bottom: 28px; }
.pillar-icon i { font-size: 24px; }
.pillar-card h3 {
margin: 0 0 22px;
  color: var(--fg);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em; }
.pillar-card p {
margin: 0;
  color: var(--fg-soft);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8; }

.core-stack {
display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px; }

.core-block {
padding: 72px 0;
  border-bottom: 1px solid var(--line); }

.core-block:first-child { padding-top: 0; }

.core-block:last-child {
padding-bottom: 0;
  border-bottom: 0; }

.core-head { margin-bottom: 48px; }

.feature-icon {
width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: oklch(from var(--accent) l c h / 0.08);
  border-radius: var(--r-sm);
  margin-bottom: 26px; }

.feature-icon i { font-size: 24px; }

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

.wired-feature-card {
min-height: 280px;
  background: var(--bg-2);
  padding: 34px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s; }

.wired-feature-card:hover { background: var(--bg-3); }

.wired-feature-card h3, .wireless-feature h3, .it-control-card h3 {
margin: 0 0 16px;
  color: var(--fg);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em; }

.wired-feature-card p, .wireless-feature p, .it-control-card p {
margin: 0;
  color: var(--fg-soft);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8; }

.wired-feature-card span {
display: block;
  margin-top: auto;
  padding-top: 26px;
  color: var(--fg-mute);
  font-size: 13px;
  line-height: 1.6; }

.core-quote {
margin: 32px 0 0;
  color: var(--accent);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-wrap: balance; }

.wireless-layout {
display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 2px; }

.wireless-feature-list {
display: grid;
  gap: 2px; }

.wireless-feature, .protocol-card, .it-control-card {
background: var(--bg-2);
  padding: 34px;
  transition: background 0.2s; }

.wireless-feature:hover, .protocol-card:hover, .it-control-card:hover { background: var(--bg-3); }

.feature-num {
display: block;
  margin-bottom: 18px;
  color: oklch(from var(--accent) l c h / 0.36);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums; }

.protocol-card { min-height: 100%; }

.protocol-kicker {
margin: 0 0 34px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em; }

.protocol-item {
padding: 24px 0;
  border-top: 1px solid var(--line); }

.protocol-item strong {
display: block;
  margin-bottom: 8px;
  color: var(--fg);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em; }

.protocol-item span, .protocol-note {
color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.75; }

.protocol-note { margin: 26px 0 0; }

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

.it-control-card { min-height: 300px; }

.it-control-card p + p { margin-top: 8px; }

.core-footnote {
margin: 28px 0 0;
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.8; }

@media (max-width: 900px) {
  .wired-feature-grid, .wireless-layout, .it-control-grid { grid-template-columns: 1fr; }

  .core-block { padding: 56px 0; }
}


@media (max-width: 1100px) {}
@media (max-width: 640px) {}
body.page-dock .cap-card { background: var(--bg-2); padding: 32px; display: grid; grid-template-columns: auto 1fr; grid-template-areas: "icon num" "title title" "subtitle subtitle" "desc desc" "use use"; gap: 0 18px; align-items: start; transition: background 0.2s; }
body.page-dock .cap-card:hover { background: var(--bg-3); }
body.page-dock .cap-num { grid-area: num; justify-self: end; color: oklch(from var(--accent) l c h / 0.36); font-size: 34px; font-weight: 700; line-height: 1; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }


body.page-dock .cap-title { grid-area: title; font-size: 20px; font-weight: 600; color: var(--fg); letter-spacing: -0.015em; margin-bottom: 6px; line-height: 1.3; }
.cap-subtitle { grid-area: subtitle; font-size: 13px; font-weight: 400; color: var(--fg-mute); margin-bottom: 12px; }
body.page-dock .cap-desc { grid-area: desc; font-size: 14px; color: var(--fg-soft); line-height: 1.65; font-weight: 400; margin-bottom: 12px; }
.cap-use { grid-area: use; font-size: 12px; color: var(--fg-mute); display: flex; align-items: flex-start; gap: 6px; }
.cap-use::before { content: '→'; color: var(--accent); flex-shrink: 0; }

body.page-dock .compare-table-wrap {
margin-top: 56px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--bg-2); }

.dock-compare-table {
width: 100%;
  min-width: 840px;
  border-collapse: collapse;
  table-layout: fixed; }

.dock-compare-table th, .dock-compare-table td {
padding: 18px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--fg-soft);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle; }

.dock-compare-table thead th {
background: var(--bg-3);
  color: var(--fg);
  font-weight: 600; }

.dock-compare-table th:first-child {
width: 28%;
  text-align: left;
  color: var(--fg); }

.dock-compare-table th:last-child, .dock-compare-table td:last-child {
border-right: 2px solid oklch(from var(--accent) l c h / 0.86);
  border-left: 2px solid oklch(from var(--accent) l c h / 0.86);
  background: oklch(from var(--accent) l c h / 0.08); }

.dock-compare-table thead th:last-child {
background: var(--accent);
  color: #fff; }

body.theme-light .dock-compare-table tbody td { background: #fff; }

body.theme-light .dock-compare-table tbody td:last-child { background: #fff; }

.dock-compare-table tbody tr:last-child th, .dock-compare-table tbody tr:last-child td { border-bottom: 0; }

.dock-compare-table tbody tr:last-child td:last-child { border-bottom: 2px solid oklch(from var(--accent) l c h / 0.86); }

.compare-yes, .compare-no, .compare-partial, .compare-dash {
display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 24px;
  font-size: 14px;
  font-weight: 600; }

.compare-yes { color: oklch(0.50 0.170 155); }

.compare-no { color: oklch(0.56 0.210 25); }

.compare-partial { color: oklch(0.75 0.150 75); }

.compare-dash {
color: var(--fg-mute);
  font-size: 18px; }

.compare-yes i, .compare-no i, .compare-partial i { font-size: 18px; }

.dock-case-entry {
min-height: 180px;
  padding: 44px 48px;
  background: linear-gradient(135deg, oklch(from var(--accent) l c h / 0.10), var(--bg-2));
  border: 1px solid oklch(from var(--accent) l c h / 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px; }

body.page-dock .dock-case-entry .section__title { margin-bottom: 0; }

body.page-dock .dock-case-entry .btn-primary { flex-shrink: 0; }

@media (max-width: 720px) {
  .dock-case-entry {
padding: 34px;
    align-items: flex-start;
    flex-direction: column; }
}

.upgrade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 56px; }
@media (max-width: 768px) {.upgrade-grid { grid-template-columns: 1fr; }}
.upgrade-card { padding: 48px; background: var(--bg-2); }
.upgrade-tag { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 0.10em; padding: 4px 10px; border-radius: 4px; margin-bottom: 24px; }
.upgrade-tag--basic, .upgrade-tag--platform { color: var(--accent); background: oklch(from var(--accent) l c h / 0.12); }
.upgrade-headline { font-size: 20px; font-weight: 600; color: var(--fg); letter-spacing: -0.02em; margin-bottom: 8px; line-height: 1.3; }
.upgrade-desc { font-size: 14px; color: var(--fg-soft); font-weight: 400; line-height: 1.7; margin-bottom: 28px; }
.upgrade-points { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.upgrade-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--fg-soft); line-height: 1.5; }
.upgrade-points li i { color: var(--accent); flex-shrink: 0; font-size: 16px; margin-top: 1px; }
.upgrade-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--accent); transition: gap 0.2s; }
.upgrade-link:hover { gap: 10px; }

body.page-dock .cta-section { padding: 120px 48px; text-align: center; background: var(--bg-2); position: relative; overflow: hidden; }
body.page-dock .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 100%, oklch(from var(--accent) l c h / 0.08) 0%, transparent 70%); pointer-events: none; }
body.page-dock .cta-title { font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; letter-spacing: -0.03em; color: var(--fg); max-width: 600px; margin: 0 auto 16px; text-wrap: balance; line-height: 1.15; }
body.page-dock .cta-sub { font-size: 16px; color: var(--fg-soft); font-weight: 400; margin-bottom: 18px; }
.cta-kicker { color: var(--accent); font-size: 14px; font-weight: 500; letter-spacing: 0.08em; margin-bottom: 40px; }













@media (max-width: 640px) {
  
  
  body.page-dock .nav__hamburger { display: flex; }
  body.page-dock .hero { min-height: auto; padding: calc(var(--nav-h) + 48px) 24px 72px; }
  body.page-dock .hero::before { background: radial-gradient(ellipse 90% 70% at 50% 0%, oklch(from var(--accent) l c h / 0.10) 0%, transparent 72%); }
  body.page-dock .hero::after { display: none; }
  body.page-dock .dock-hero__image { display: none; }
  body.page-dock .hero__actions { flex-direction: column; align-items: stretch; }
  body.page-dock .hero__actions .btn-primary, body.page-dock .hero__actions .btn-ghost { text-align: center; justify-content: center; }
  
  
  
  
  }

/* solution.html */
:root {
--f-sans: 'Space Grotesk', 'PingFang SC', 'HarmonyOS Sans SC', sans-serif;
  --f-serif: 'Instrument Serif', 'Songti SC', Georgia, serif;
  --bg:        oklch(0.10 0.008 240);
  --bg-2:      oklch(0.14 0.009 240);
  --bg-3:      oklch(0.18 0.010 240);
  --fg:        oklch(0.97 0.005 240);
  --fg-soft:   oklch(0.72 0.010 240);
  --fg-mute:   oklch(0.50 0.010 240);
  --line:      oklch(0.97 0.005 240 / 0.08);
  --line-mid:  oklch(0.97 0.005 240 / 0.16);
  --accent: oklch(0.72 0.150 65);
  --accent-2: oklch(0.68 0.130 45);
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 64px; }


html { scroll-behavior: smooth; }
body.page-solution { font-family: var(--f-sans); background: var(--bg); color: var(--fg); -webkit-font-smoothing: antialiased; overflow-x: hidden; transition: background 0.4s, color 0.3s; }


body.page-solution .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
body.page-solution .reveal.visible { opacity: 1; transform: none; }
 
 



























body.page-solution .nav__hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
body.page-solution .nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--fg); border-radius: 2px; }














body.page-solution .mobile-menu__sub { display: none; flex-direction: column; padding-bottom: 12px; }
body.page-solution .mobile-menu__group.open .mobile-menu__sub { display: flex; }










body.page-solution .hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; text-align: left; padding: calc(var(--nav-h) + 88px) max(48px, calc((100vw - 1140px) / 2)) 96px; overflow: hidden; background: var(--bg); }
body.page-solution .hero::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--bg) 0%, oklch(from var(--bg) l c h / 0.94) 32%, oklch(from var(--bg) l c h / 0.46) 54%, transparent 76%); pointer-events: none; }
body.page-solution .hero::after { content: ''; position: absolute; inset: auto 0 0; z-index: 1; height: 28%; background: linear-gradient(to bottom, transparent, var(--bg)); pointer-events: none; }
body.page-solution .solution-hero__image {
position: absolute;
  inset: var(--nav-h) 0 0;
  z-index: 0;
  width: 100%;
  height: calc(100% - var(--nav-h));
  object-fit: cover;
  object-position: center bottom; }

body.page-solution .solution-hero__content {
position: relative;
  z-index: 2;
  max-width: 560px; }
body.page-solution .hero__title { font-size: clamp(34px, 4.2vw, 58px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; color: var(--fg); max-width: 560px; text-wrap: balance; margin-bottom: 20px; }
body.page-solution .hero__lead {
max-width: 560px;
  margin: 0 0 40px;
  color: var(--fg-soft);
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 400;
  line-height: 1.75;
  text-wrap: balance; }
body.page-solution .hero__subtitle {
font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 400;
  color: var(--fg-mute);
  max-width: 680px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px; }

body.page-solution .hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start; }
body.page-solution .btn-primary { padding: 13px 28px; font-size: 15px; font-weight: 500; font-family: var(--f-sans); color: #fff; background: var(--accent); border: none; border-radius: var(--r-sm); cursor: pointer; transition: transform 0.15s, opacity 0.15s; letter-spacing: -0.01em; }
body.page-solution .btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
body.page-solution .btn-ghost { padding: 13px 28px; font-size: 15px; font-weight: 400; font-family: var(--f-sans); color: var(--fg-soft); background: none; border: 1px solid var(--line-mid); border-radius: var(--r-sm); cursor: pointer; transition: color 0.2s, border-color 0.2s, transform 0.15s; letter-spacing: -0.01em; display: flex; align-items: center; gap: 8px; }
body.page-solution .btn-ghost:hover { color: var(--fg); transform: translateY(-1px); }


body.page-solution .section-alt { background: var(--bg-2); }
#solutions { padding-top: 80px; padding-bottom: 96px; }


body.page-solution .section__title { font-size: clamp(26px, 3vw, 44px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.15; color: var(--fg); max-width: 680px; text-wrap: balance; margin-bottom: 16px; }
body.page-solution .section__sub { font-size: 17px; font-weight: 400; color: var(--fg-soft); line-height: 1.7; max-width: 560px; text-wrap: pretty; }


.stage-grid {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-top: 56px; }
.stage-card {
min-height: 360px;
  padding: 36px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  transition: background 0.2s, transform 0.2s; }
.stage-card:hover {
background: var(--bg-3);
  transform: translateY(-2px); }
.stage-scale {
color: var(--fg);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 36px; }
.stage-pains {
display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--fg-soft);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6; }
.stage-solution {
margin-top: auto;
  padding-top: 36px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.015em; }
@media (max-width: 900px) {
  .stage-grid { grid-template-columns: 1fr; }

  .stage-card { min-height: auto; }
}

.product-role-grid {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); }
.product-role-card {
min-height: 500px;
  padding: 42px 44px;
  background: transparent;
  display: flex;
  flex-direction: column; }
.product-role-card + .product-role-card { border-left: 1px solid var(--line); }
.product-role-card__head { margin-bottom: 28px; }
.product-role-card h3 {
font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 6px; }
.product-role-card__head p {
font-size: 15px;
  color: var(--fg-mute);
  line-height: 1.5; }
.product-role-meta {
display: block;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 18px; }
.product-role-focus {
font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-weight: 600;
  margin-bottom: 30px; }
.product-role-points {
display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px; }
.product-role-points span {
display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.5; }
.product-role-points i {
width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 6px;
  background: oklch(from var(--accent) l c h / 0.10);
  color: var(--accent);
  font-size: 17px; }
.product-role-note {
margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--fg-soft);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5; }
.product-role-note span {
display: flex;
  align-items: center;
  gap: 10px; }
.product-role-note span::before {
content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0; }
.product-role-equation {
margin-top: 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-align: center; }
@media (max-width: 900px) {
  .product-role-grid { grid-template-columns: 1fr; }

  .product-role-card { min-height: auto; }

  .product-role-card + .product-role-card {
border-left: 0;
    border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .product-role-card { padding: 30px 24px; }

  .product-role-points { grid-template-columns: 1fr; }
}

.delivery-plan-grid {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-top: 56px; }
.delivery-plan-card {
position: relative;
  min-height: 620px;
  padding: 34px 32px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: background 0.2s, transform 0.2s; }
.delivery-plan-card:hover {
background: var(--bg-3);
  transform: translateY(-2px); }
.delivery-plan-card--featured { background: oklch(from var(--accent) l c h / 0.08); }
body.theme-light .delivery-plan-card--featured { background: oklch(from var(--accent) 0.965 0.020 h / 0.72); }
.delivery-plan-card--featured::before {
content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--accent); }
.delivery-plan-kicker {
color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 28px; }
.delivery-plan-badge {
position: absolute;
  top: 28px;
  right: 28px;
  padding: 5px 10px;
  border: 1px solid oklch(from var(--accent) l c h / 0.28);
  border-radius: 999px;
  background: oklch(from var(--accent) l c h / 0.10);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500; }
.delivery-plan-num {
color: oklch(from var(--accent) l c h / 0.34);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 22px; }
.delivery-plan-title {
color: var(--fg);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 8px; }
.delivery-plan-subtitle {
color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 30px; }
.delivery-plan-group {
padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 24px; }
.delivery-plan-group h4 {
color: var(--fg);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px; }
.delivery-plan-group p {
color: var(--fg-soft);
  font-size: 14px;
  line-height: 1.75; }
.delivery-plan-points {
display: flex;
  flex-direction: column;
  gap: 10px; }
.delivery-plan-points span {
display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--fg-soft);
  font-size: 14px;
  line-height: 1.6; }
.delivery-plan-points span::before {
content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px; }
.delivery-plan-period {
margin-top: auto;
  padding-top: 32px;
  color: var(--fg);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5; }
.delivery-plan-link {
display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition: gap 0.2s; }
.delivery-plan-link:hover { gap: 11px; }
@media (max-width: 980px) {
  .delivery-plan-grid { grid-template-columns: 1fr; }

  .delivery-plan-card { min-height: auto; }
}

.upgrade-path {
display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 56px; }
.upgrade-step {
min-height: 220px;
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  justify-content: center; }
body.theme-light .upgrade-step { background: oklch(0.975 0.004 240); }
.upgrade-step h3 {
color: var(--fg);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 28px; }
.upgrade-step p {
color: var(--fg);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 8px; }
.upgrade-step span {
display: block;
  color: var(--fg-soft);
  font-size: 14px;
  line-height: 1.65; }
.upgrade-arrow {
align-self: center;
  color: var(--accent);
  font-size: 28px;
  line-height: 1; }
.upgrade-note {
margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--fg-soft);
  font-size: 14px;
  line-height: 1.65; }
.upgrade-note strong {
color: var(--fg);
  font-weight: 600; }
@media (max-width: 860px) {
  .upgrade-path {
grid-template-columns: 1fr;
    gap: 18px; }

  .upgrade-arrow { display: none; }
}

.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.solution-card { background: var(--bg-2); padding: 44px 40px; min-height: 420px; display: flex; flex-direction: column; transition: background 0.2s; }
.solution-card:hover { background: var(--bg-3); }
.solution-card--featured { background: var(--bg-2); position: relative; overflow: hidden; }
body.theme-light .solution-card--featured { background: oklch(from var(--accent) 0.97 0.018 h / 0.55); }
.solution-card--featured::before { content: ''; position: absolute; inset: 0 0 auto; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.solution-num { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 28px; font-variant-numeric: tabular-nums; }
.solution-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--accent); background: oklch(from var(--accent) l c h / 0.08); border-radius: var(--r-sm); }
.solution-icon i { font-size: 24px; color: var(--accent); }
.solution-title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; color: var(--fg); margin-bottom: 10px; }
.solution-subtitle { font-size: 13px; color: var(--fg-mute); margin-bottom: 28px; }
.solution-points { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.solution-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--fg-soft); line-height: 1.55; }
.solution-points li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 8px; }
.solution-link { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--accent); transition: gap 0.2s; }
.solution-link:hover { gap: 10px; }
@media (max-width: 980px) {.solution-grid { grid-template-columns: 1fr; } .solution-card { min-height: auto; }}

body.page-solution .cta-section { padding: 120px 48px; text-align: center; background: var(--bg-2); position: relative; overflow: hidden; }
body.page-solution .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 100%, oklch(from var(--accent) l c h / 0.08) 0%, transparent 70%); pointer-events: none; }
body.page-solution .cta-title { font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; letter-spacing: -0.03em; color: var(--fg); max-width: 600px; margin: 0 auto 16px; text-wrap: balance; line-height: 1.15; }
body.page-solution .cta-sub { font-size: 16px; color: var(--fg-soft); font-weight: 400; margin-bottom: 40px; }













@media (max-width: 640px) {
  
  
  body.page-solution .nav__hamburger { display: flex; }
  body.page-solution .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 40px) 24px 60px;
    text-align: center; }
  body.page-solution .hero::before { background: radial-gradient(ellipse 90% 70% at 50% 0%, oklch(from var(--accent) l c h / 0.10) 0%, transparent 72%); }
  body.page-solution .hero::after { display: none; }
  body.page-solution .solution-hero__image { display: none; }
  body.page-solution .solution-hero__content {
    justify-self: center;
    max-width: 720px; }
  body.page-solution .hero__actions { justify-content: center; }
  body.page-solution .hero__actions { flex-direction: column; align-items: stretch; }
  body.page-solution .hero__actions .btn-primary, body.page-solution .hero__actions .btn-ghost { text-align: center; justify-content: center; }
  
  #solutions { padding-top: 56px; padding-bottom: 72px; }
  
  
  
  }

/* solutions.html */
:root {
--f-sans: 'Space Grotesk', 'PingFang SC', 'HarmonyOS Sans SC', sans-serif;
  --f-serif: 'Instrument Serif', 'Songti SC', Georgia, serif;
  --bg:        oklch(0.10 0.008 240);
  --bg-2:      oklch(0.14 0.009 240);
  --bg-3:      oklch(0.18 0.010 240);
  --fg:        oklch(0.97 0.005 240);
  --fg-soft:   oklch(0.72 0.010 240);
  --fg-mute:   oklch(0.50 0.010 240);
  --line:      oklch(0.97 0.005 240 / 0.08);
  --line-mid:  oklch(0.97 0.005 240 / 0.16);
  --accent: oklch(0.72 0.150 65);
  --accent-2: oklch(0.68 0.130 45);
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 64px; }


html { scroll-behavior: smooth; }
body.page-solutions { font-family: var(--f-sans); background: var(--bg); color: var(--fg); -webkit-font-smoothing: antialiased; overflow-x: hidden; transition: background 0.4s, color 0.3s; }


body.page-solutions .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
body.page-solutions .reveal.visible { opacity: 1; transform: none; }
 
 



























body.page-solutions .nav__hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
body.page-solutions .nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--fg); border-radius: 2px; }














body.page-solutions .mobile-menu__sub { display: none; flex-direction: column; padding-bottom: 12px; }
body.page-solutions .mobile-menu__group.open .mobile-menu__sub { display: flex; }










body.page-solutions .hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: calc(var(--nav-h) + 80px) 48px 80px; overflow: hidden; }
body.page-solutions .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, oklch(from var(--accent) l c h / 0.12) 0%, transparent 70%); pointer-events: none; }
body.page-solutions .hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 80%); pointer-events: none; }
body.page-solutions .hero > * { position: relative; z-index: 1; }

body.page-solutions .hero__title { font-size: clamp(34px, 5vw, 68px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.1; color: var(--fg); max-width: 1080px; text-wrap: balance; margin-bottom: 22px; }
body.page-solutions .hero__lead { font-size: clamp(16px, 1.5vw, 21px); font-weight: 400; color: var(--fg-soft); max-width: 760px; line-height: 1.75; text-wrap: balance; margin-bottom: 40px; }
body.page-solutions .hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
body.page-solutions .btn-primary { padding: 13px 28px; font-size: 15px; font-weight: 500; font-family: var(--f-sans); color: #fff; background: var(--accent); border: none; border-radius: var(--r-sm); cursor: pointer; transition: transform 0.15s, opacity 0.15s; letter-spacing: -0.01em; }
body.page-solutions .btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
body.page-solutions .btn-ghost { padding: 13px 28px; font-size: 15px; font-weight: 400; font-family: var(--f-sans); color: var(--fg-soft); background: none; border: 1px solid var(--line-mid); border-radius: var(--r-sm); cursor: pointer; transition: color 0.2s, border-color 0.2s, transform 0.15s; letter-spacing: -0.01em; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
body.page-solutions .btn-ghost:hover { color: var(--fg); transform: translateY(-1px); }


body.page-solutions .section-alt { background: var(--bg-2); }


body.page-solutions .section__title { font-size: clamp(26px, 3vw, 44px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.15; color: var(--fg); max-width: 760px; text-wrap: balance; margin-bottom: 16px; }
body.page-solutions .section__sub { font-size: 17px; font-weight: 400; color: var(--fg-soft); line-height: 1.7; max-width: 620px; text-wrap: pretty; }
.section-head--center { text-align: center; display: flex; flex-direction: column; align-items: center; }

.scenario-stack { display: flex; flex-direction: column; gap: 28px; margin-top: 56px; }
.scenario-card { padding: 40px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg); box-shadow: var(--shadow-card); }
body.page-solutions .section-alt .scenario-card { background: var(--bg); }
.scenario-card__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 420px); gap: 28px; align-items: stretch; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.scenario-kicker { font-size: 12px; line-height: 1.4; color: var(--accent); font-weight: 600; letter-spacing: 0.08em; text-transform: none; margin-bottom: 12px; }
.scenario-title { font-size: clamp(26px, 3vw, 42px); font-weight: 600; letter-spacing: -0.03em; color: var(--fg); line-height: 1.16; max-width: 820px; margin-bottom: 12px; }
.scenario-fit { font-size: clamp(16px, 1.4vw, 20px); font-weight: 400; color: var(--fg-soft); line-height: 1.55; max-width: 820px; letter-spacing: -0.015em; }
.scenario-card__copy { display: flex; flex-direction: column; align-items: flex-start; }
.scenario-card__copy .scenario-link { margin-top: 24px; }
.scenario-card__aside { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.scenario-visual { margin: 0; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--bg-2); }
.scenario-visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.scenario-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: 14px; font-weight: 500; white-space: nowrap; transition: gap 0.2s; }
.scenario-link:hover { gap: 12px; }
.scenario-card__body { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; margin-top: 28px; }
.scenario-panel { padding: 24px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--bg-2); }
body.page-solutions .section-alt .scenario-panel { background: var(--bg-2); }
.scenario-panel--accent { background: oklch(from var(--accent) l c h / 0.08); border-color: oklch(from var(--accent) l c h / 0.18); }
body.page-solutions .section-alt .scenario-panel--accent { background: oklch(from var(--accent) l c h / 0.08); border-color: oklch(from var(--accent) l c h / 0.18); }
body.page-solutions .panel-title { font-size: 18px; font-weight: 600; color: var(--fg); margin-bottom: 16px; letter-spacing: -0.02em; }
body.page-solutions .bullet-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
body.page-solutions .bullet-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--fg-soft); font-size: 14px; line-height: 1.65; }
body.page-solutions .bullet-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 8px; }
.scenario-chip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.scenario-chip { min-height: 72px; display: flex; align-items: center; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--bg); color: var(--fg-soft); font-size: 14px; line-height: 1.55; }
.scenario-chip-grid--solution .scenario-chip { background: oklch(from var(--accent) l c h / 0.08); border-color: oklch(from var(--accent) l c h / 0.18); color: var(--fg); }
.scenario-meta { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.meta-line { color: var(--fg-soft); font-size: 14px; line-height: 1.65; }
.meta-line strong { color: var(--fg); font-weight: 500; }

body.page-solutions .industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.industry-card { padding: 34px 32px; background: var(--bg-2); }
.industry-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--accent); background: oklch(from var(--accent) l c h / 0.08); border-radius: var(--r-sm); }
.industry-icon i { font-size: 24px; color: var(--accent); }
.industry-title { font-size: 20px; color: var(--fg); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; }
.industry-desc { font-size: 14px; color: var(--fg-soft); line-height: 1.7; }

body.page-solutions .compare-table-wrap { margin-top: 56px; overflow-x: auto; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.compare-table { width: 100%; min-width: 880px; border-collapse: collapse; background: var(--bg); }
.compare-table th, .compare-table td { text-align: left; vertical-align: middle; padding: 24px 28px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.compare-table th:last-child, .compare-table td:last-child { border-right: 0; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table th { font-size: 14px; color: var(--fg); font-weight: 600; background: var(--bg-2); }
.compare-table td { font-size: 15px; color: var(--fg-soft); line-height: 1.75; }
.version-cell { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.version-name { font-size: 17px; line-height: 1.35; font-weight: 600; color: var(--fg); letter-spacing: 0; }
.version-tag { display: inline-flex; align-items: center; min-height: 28px; padding: 4px 10px; border-radius: 999px; background: oklch(from var(--accent) l c h / 0.1); color: var(--accent); border: 1px solid oklch(from var(--accent) l c h / 0.2); font-size: 12px; line-height: 1.3; font-weight: 500; white-space: nowrap; }
.version-scale { white-space: nowrap; color: var(--fg); font-weight: 500; }
.compare-table tbody tr:nth-child(2) td { background: oklch(from var(--accent) l c h / 0.08); }

body.page-solutions .cta-section { padding: 120px 48px; text-align: center; background: var(--bg-2); position: relative; overflow: hidden; }
body.page-solutions .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 100%, oklch(from var(--accent) l c h / 0.08) 0%, transparent 70%); pointer-events: none; }
body.page-solutions .cta-title { font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; letter-spacing: -0.03em; color: var(--fg); max-width: 640px; margin: 0 auto 16px; text-wrap: balance; line-height: 1.15; }
body.page-solutions .cta-sub { font-size: 16px; color: var(--fg-soft); font-weight: 400; margin-bottom: 40px; }

@media (max-width: 980px) {.scenario-card { padding: 28px; }
  .scenario-card__head, .scenario-card__body { grid-template-columns: 1fr; }
  .scenario-link { justify-self: start; }
  body.page-solutions .industry-grid { grid-template-columns: 1fr; }}













@media (max-width: 640px) {
  
  
  body.page-solutions .nav__hamburger { display: flex; }
  body.page-solutions .hero { padding: calc(var(--nav-h) + 40px) 24px 60px; }
  body.page-solutions .hero__actions { flex-direction: column; align-items: stretch; }
  body.page-solutions .hero__actions .btn-primary, body.page-solutions .hero__actions .btn-ghost { text-align: center; justify-content: center; }
  
  .scenario-chip-grid { grid-template-columns: 1fr; }
  
  
  
  }

/* cases.html */
:root {
--f-sans:
          "Space Grotesk", "PingFang SC", "HarmonyOS Sans SC", sans-serif;
        --f-serif: "Instrument Serif", "Songti SC", Georgia, serif;
        --bg: oklch(0.1 0.008 240);
        --bg-2: oklch(0.14 0.009 240);
        --bg-3: oklch(0.18 0.01 240);
        --fg: oklch(0.97 0.005 240);
        --fg-soft: oklch(0.72 0.01 240);
        --fg-mute: oklch(0.5 0.01 240);
        --line: oklch(0.97 0.005 240 / 0.08);
        --line-mid: oklch(0.97 0.005 240 / 0.16);
        --accent: oklch(0.72 0.150 65);
        --accent-2: oklch(0.68 0.130 45);
        --r-sm: 6px;
        --r-md: 10px;
        --r-lg: 16px;
        --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
        --nav-h: 64px; }
      
      
      html { scroll-behavior: smooth; }
      body.page-cases {
font-family: var(--f-sans);
        background: var(--bg);
        color: var(--fg);
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
        transition:
          background 0.4s,
          color 0.3s; }
      


      body.page-cases .reveal {
opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.7s var(--ease-out),
          transform 0.7s var(--ease-out); }
      body.page-cases .reveal.visible {
opacity: 1;
        transform: none; }
      
      
      
      


      
      
      
      
      
      
      
      
      
      
      


      
      
      
      
      
      
      

      
      
      
      
      
      
      body.page-cases .nav__hamburger {
display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        margin-left: auto; }
      body.page-cases .nav__hamburger span {
display: block;
        width: 22px;
        height: 1.5px;
        background: var(--fg);
        border-radius: 2px; }


      
      
      
      
      
      
      

      
      
      
      
      
      body.page-cases .mobile-menu__sub {
display: none;
        flex-direction: column;
        padding-bottom: 12px; }
      body.page-cases .mobile-menu__group.open .mobile-menu__sub { display: flex; }
      
      
      
      
      
      
      
      
      


      body.page-cases .hero {
position: relative;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: calc(var(--nav-h) + 80px) 48px 80px;
        overflow: hidden; }
      body.page-cases .hero::before {
content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 80% 60% at 50% 0%,
          oklch(from var(--accent) l c h / 0.12) 0%,
          transparent 70%
        );
        pointer-events: none; }
      body.page-cases .hero::after {
content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(var(--line) 1px, transparent 1px),
          linear-gradient(90deg, var(--line) 1px, transparent 1px);
        background-size: 80px 80px;
        mask-image: radial-gradient(
          ellipse 70% 60% at 50% 0%,
          black 30%,
          transparent 80%
        );
        pointer-events: none; }
      body.page-cases .hero > * {
position: relative;
        z-index: 1; }
      
      body.page-cases .hero__title {
font-size: clamp(34px, 5vw, 68px);
        font-weight: 600;
        letter-spacing: -0.035em;
        line-height: 1.1;
        color: var(--fg);
        max-width: 1080px;
        text-wrap: balance;
        margin-bottom: 22px; }
      body.page-cases .hero__lead {
font-size: clamp(16px, 1.5vw, 21px);
        font-weight: 400;
        color: var(--fg-soft);
        max-width: 760px;
        line-height: 1.75;
        text-wrap: balance;
        margin-bottom: 40px; }
      body.page-cases .hero__actions {
display: flex;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center; }
      body.page-cases .btn-primary {
padding: 13px 28px;
        font-size: 15px;
        font-weight: 500;
        font-family: var(--f-sans);
        color: #fff;
        background: var(--accent);
        border: none;
        border-radius: var(--r-sm);
        cursor: pointer;
        transition:
          transform 0.15s,
          opacity 0.15s;
        letter-spacing: -0.01em; }
      body.page-cases .btn-primary:hover {
opacity: 0.85;
        transform: translateY(-1px); }
      body.page-cases .btn-ghost {
padding: 13px 28px;
        font-size: 15px;
        font-weight: 400;
        font-family: var(--f-sans);
        color: var(--fg-soft);
        background: none;
        border: 1px solid var(--line-mid);
        border-radius: var(--r-sm);
        cursor: pointer;
        transition:
          color 0.2s,
          border-color 0.2s,
          transform 0.15s;
        letter-spacing: -0.01em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px; }
      body.page-cases .btn-ghost:hover {
color: var(--fg);
        transform: translateY(-1px); }


      
      body.page-cases .section-alt { background: var(--bg-2); }
      
      
      body.page-cases .section__title {
font-size: clamp(26px, 3vw, 44px);
        font-weight: 600;
        letter-spacing: -0.025em;
        line-height: 1.15;
        color: var(--fg);
        max-width: 760px;
        text-wrap: balance;
        margin-bottom: 16px; }
      body.page-cases .section__sub {
font-size: 17px;
        font-weight: 400;
        color: var(--fg-soft);
        line-height: 1.7;
        max-width: 620px;
        text-wrap: pretty; }
      


      
      
      body.page-cases .section-alt .scenario-card { background: var(--bg-2); }
      
      
      
      
      
      
      
      
      body.page-cases .section-alt .scenario-panel { background: var(--bg-2); }
      
      body.page-cases .section-alt .scenario-panel--accent {
background: linear-gradient(
          180deg,
          oklch(from var(--accent) l c h / 0.08),
          var(--bg-2)
        ); }
      body.page-cases .panel-title {
font-size: 16px;
        font-weight: 600;
        color: var(--fg);
        margin-bottom: 18px;
        letter-spacing: -0.01em; }
      body.page-cases .bullet-list {
list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px; }
      body.page-cases .bullet-list li {
display: flex;
        align-items: flex-start;
        gap: 10px;
        color: var(--fg-soft);
        font-size: 14px;
        line-height: 1.65; }
      body.page-cases .bullet-list li::before {
content: "";
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--accent);
        flex-shrink: 0;
        margin-top: 8px; }
      
      
      


      body.page-cases .industry-grid {
display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        margin-top: 48px;
        border: 1px solid var(--line);
        border-radius: var(--r-lg);
        overflow: hidden; }
      
      
      
      
      


      body.page-cases .compare-table-wrap {
margin-top: 56px;
        overflow-x: auto;
        border: 1px solid var(--line);
        border-radius: var(--r-lg); }
      
      
      
      
      
      
      
      
      
      
      


      body.page-cases .cta-section {
padding: 120px 48px;
        text-align: center;
        background: var(--bg-2);
        position: relative;
        overflow: hidden; }
      body.page-cases .cta-section::before {
content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 60% 80% at 50% 100%,
          oklch(from var(--accent) l c h / 0.08) 0%,
          transparent 70%
        );
        pointer-events: none; }
      body.page-cases .cta-title {
font-size: clamp(28px, 3.5vw, 48px);
        font-weight: 600;
        letter-spacing: -0.03em;
        color: var(--fg);
        max-width: 640px;
        margin: 0 auto 16px;
        text-wrap: balance;
        line-height: 1.15; }
      body.page-cases .cta-sub {
font-size: 16px;
        color: var(--fg-soft);
        font-weight: 400;
        margin-bottom: 40px; }

      @media (max-width: 980px) {
        
        body.page-cases .industry-grid { grid-template-columns: 1fr; }}


      
      


      
      
      
      
      
      
      
      


      @media (max-width: 640px) {
        
        
        body.page-cases .nav__hamburger { display: flex; }
        body.page-cases .hero { padding: calc(var(--nav-h) + 40px) 24px 60px; }
        body.page-cases .hero__actions {
flex-direction: column;
          align-items: stretch; }
        body.page-cases .hero__actions .btn-primary, body.page-cases .hero__actions .btn-ghost {
text-align: center;
          justify-content: center; }
        
        
        
        
        }


      .logo-wall {
width: min(960px, 100%);
        margin: 52px auto 0;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px; }
      .logo-tile {
min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 18px;
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        background: var(--bg-2);
        color: var(--fg);
        font-size: 14px;
        font-weight: 500; }
      .logo-tile img {
display: block;
        max-width: 100%;
        max-height: 64px;
        width: auto;
        object-fit: contain;
        opacity: 0.72;
        filter: invert(1) grayscale(1); }
      body.theme-light .logo-tile img {
filter: grayscale(1);
        opacity: 0.7; }
      .case-stack {
display: flex;
        flex-direction: column;
        gap: 28px;
        margin-top: 56px; }
      .case-card {
padding: 40px;
        border: 1px solid var(--line);
        border-radius: var(--r-lg);
        background: var(--bg);
        box-shadow: var(--shadow-card); }
      .case-card__head {
display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
        gap: 28px;
        align-items: stretch;
        padding-bottom: 28px;
        border-bottom: 1px solid var(--line); }
      .case-card__copy {
display: flex;
        flex-direction: column;
        align-items: flex-start; }
      .case-kicker {
font-size: 12px;
        line-height: 1.4;
        color: var(--accent);
        font-weight: 600;
        letter-spacing: 0.08em;
        margin-bottom: 12px; }
      .case-title {
font-size: clamp(26px, 3vw, 42px);
        font-weight: 600;
        letter-spacing: -0.03em;
        color: var(--fg);
        line-height: 1.16;
        max-width: 820px; }
      .case-subtitle {
max-width: 820px;
        margin-top: 10px;
        font-size: clamp(17px, 1.6vw, 22px);
        font-weight: 400;
        line-height: 1.45;
        letter-spacing: -0.015em;
        color: var(--fg-soft); }
      .tag-row {
display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 20px; }
      .case-tag {
display: inline-flex;
        align-items: center;
        min-height: 28px;
        padding: 4px 10px;
        border-radius: 999px;
        background: oklch(from var(--accent) l c h / 0.1);
        color: var(--accent);
        border: 1px solid oklch(from var(--accent) l c h / 0.2);
        font-size: 12px;
        line-height: 1.3;
        font-weight: 500;
        white-space: nowrap; }
      .case-card__copy .case-link { margin-top: 24px; }
      .case-card__aside {
display: flex;
        align-items: stretch; }
      .case-visual {
width: 100%;
        margin: 0;
        aspect-ratio: 59 / 24;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: var(--r-sm);
        background: var(--bg-2); }
      .case-visual img {
display: block;
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .case-link {
display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--accent);
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap; }
      .case-body {
display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 24px;
        margin-top: 28px; }
      .case-panel {
padding: 24px;
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        background: var(--bg-2); }
      .case-panel--accent {
background: oklch(from var(--accent) l c h / 0.08);
        border-color: oklch(from var(--accent) l c h / 0.18); }
      .case-panel--wide { grid-column: 1 / -1; }
      .panel-eyebrow {
font-size: 12px;
        line-height: 1.4;
        color: var(--accent);
        font-weight: 600;
        margin-bottom: 10px; }
      body.page-cases .panel-title {
font-size: 18px;
        color: var(--fg);
        font-weight: 600;
        letter-spacing: -0.02em;
        margin-bottom: 16px; }
      body.page-cases .bullet-list {
list-style: none;
        display: grid;
        gap: 10px; }
      body.page-cases .bullet-list li {
position: relative;
        padding-left: 18px;
        font-size: 14px;
        line-height: 1.7;
        color: var(--fg-soft); }
      body.page-cases .bullet-list li::before {
content: "";
        position: absolute;
        left: 0;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--accent); }
      .quote-box {
margin-top: 24px;
        padding: 24px;
        background: var(--bg-2);
        border-left: 2px solid var(--accent); }
      .quote-box p {
font-size: 16px;
        line-height: 1.75;
        color: var(--fg);
        font-weight: 400; }
      .quote-box cite {
display: block;
        margin-top: 12px;
        font-style: normal;
        color: var(--fg-mute);
        font-size: 13px; }
      .metric-grid {
display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 56px; }
      .metric-card {
padding: 28px;
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        background: var(--bg); }
      .metric-num {
font-size: clamp(34px, 5vw, 56px);
        color: var(--accent);
        font-weight: 600;
        letter-spacing: -0.04em;
        line-height: 1;
        margin-bottom: 10px; }
      .metric-label {
font-size: 14px;
        color: var(--fg-soft);
        line-height: 1.6; }
      .distribution {
display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-top: 32px; }
      .distribution-card {
padding: 28px;
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        background: var(--bg); }
      .distribution-title {
font-size: 18px;
        color: var(--fg);
        font-weight: 600;
        margin-bottom: 18px; }
      .bar-list {
display: grid;
        gap: 14px; }
      .bar-item {
display: grid;
        grid-template-columns: 90px 1fr auto;
        gap: 14px;
        align-items: center;
        font-size: 13px;
        color: var(--fg-soft); }
      .bar-track {
height: 8px;
        border-radius: 999px;
        background: var(--bg-3);
        overflow: hidden; }
      .bar-fill {
height: 100%;
        border-radius: inherit;
        background: var(--accent); }
      .city-list {
display: flex;
        flex-wrap: wrap;
        gap: 8px; }
      .city-pill {
padding: 7px 10px;
        border-radius: 999px;
        background: var(--bg-3);
        color: var(--fg-soft);
        font-size: 13px; }
      .customer-grid {
display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-top: 32px; }
      .customer-card {
padding: 28px;
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        background: var(--bg); }
      .customer-card h3 {
font-size: 20px;
        color: var(--fg);
        font-weight: 600;
        margin-bottom: 18px;
        letter-spacing: -0.02em; }
      .customer-group { margin-top: 16px; }
      .customer-group strong {
display: block;
        color: var(--fg);
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px; }
      .customer-group p {
color: var(--fg-soft);
        font-size: 14px;
        line-height: 1.75; }
      .recognition-grid {
display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 2px;
        margin-top: 48px;
        background: var(--line); }
      .recognition-item {
min-height: 174px;
        padding: 28px;
        background: var(--bg-2);
        display: grid;
        grid-template-rows: auto 1fr auto;
        gap: 16px;
        transition: background 0.2s; }
      .recognition-item:hover { background: var(--bg-3); }
      .recognition-icon {
width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        background: oklch(from var(--accent) l c h / 0.08);
        border-radius: var(--r-sm); }
      .recognition-icon i { font-size: 24px; }
      .recognition-title {
font-size: 18px;
        font-weight: 600;
        line-height: 1.35;
        letter-spacing: -0.015em;
        color: var(--fg); }
      .recognition-text {
font-size: 14px;
        line-height: 1.65;
        color: var(--fg-soft);
        font-weight: 400; }

      @media (max-width: 980px) {.logo-wall, .metric-grid, .distribution, .customer-grid, .recognition-grid { grid-template-columns: 1fr; }
        .case-card { padding: 28px; }
        .case-card__head, .case-body { grid-template-columns: 1fr; }
        .case-link { justify-self: start; }}

body.theme-light .section-alt { background: transparent; }

/* vision.html */
body.page-vision .vision-hero .hero__title { max-width: 1040px; }

.vision-split {
display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start; }

.vision-split--wide { grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); }

.vision-compare-card, .vision-loop-card, .vision-result-card, .vision-promise-item {
border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg); }

.vision-problem-card { padding: 0; }

.vision-gap-layout {
display: grid;
  gap: 56px; }

.vision-answer {
margin-top: 30px;
  padding: 26px;
  border-left: 2px solid var(--accent);
  background: oklch(from var(--accent) l c h / 0.08); }

.vision-gap-grid {
display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px; }

.vision-gap-item {
padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg-2); }

.vision-gap-item span {
display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em; }

.vision-gap-item h3 {
color: var(--fg);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.015em;
  font-weight: 500; }

.vision-answer__label, .vision-compare-tag {
display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: oklch(from var(--accent) l c h / 0.1);
  color: var(--accent);
  border: 1px solid oklch(from var(--accent) l c h / 0.2);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500; }

.vision-answer p {
margin-top: 14px;
  color: var(--fg);
  font-size: 17px;
  line-height: 1.75; }

.vision-compare-grid {
display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2px;
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--line); }

.vision-compare-card {
min-height: 260px;
  padding: 38px;
  border: 0;
  border-radius: 0; }

.vision-compare-card--active { background: linear-gradient(180deg, oklch(from var(--accent) l c h / 0.1), var(--bg)); }

.vision-compare-card h3 {
margin-top: 24px;
  color: var(--fg);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 600; }

.vision-compare-card p {
margin-top: 16px;
  color: var(--fg-soft);
  font-size: 17px;
  line-height: 1.7; }

.vision-loop-grid {
display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px; }

.vision-loop-card {
position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 40px 36px;
  border: 0;
  border-radius: 0;
  background: var(--bg-2);
  cursor: default; }

body.page-vision .access-num {
display: block;
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: oklch(from var(--accent) l c h / 0.32);
  font-variant-numeric: tabular-nums; }

.vision-loop-card h3, .vision-result-card h3 {
color: var(--fg);
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin-bottom: 12px; }

.vision-loop-card p, .vision-result-card p, .vision-promise-item p {
color: var(--fg-soft);
  font-size: 14px;
  line-height: 1.75; }

.vision-result-grid {
display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px; }

.vision-result-card {
padding: 28px;
  background: var(--bg); }

.vision-result-card i {
width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--accent);
  background: oklch(from var(--accent) l c h / 0.08);
  border-radius: var(--r-sm);
  font-size: 24px; }

.vision-promise-grid {
display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px; }

.vision-promise-item {
padding: 28px;
  background: var(--bg-2); }

.vision-promise-item span {
display: block;
  color: var(--fg);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px; }

@media (max-width: 980px) {
  .vision-split, .vision-split--wide, .vision-compare-grid, .vision-gap-grid, .vision-result-grid { grid-template-columns: 1fr; }

  .vision-loop-grid { grid-template-columns: repeat(2, 1fr); }

  .vision-promise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .vision-problem-card, .vision-compare-card, .vision-loop-card, .vision-result-card, .vision-promise-item { padding: 24px; }

  .vision-loop-grid, .vision-promise-grid { grid-template-columns: 1fr; }
}

/* about.html */
body.page-about .about-hero .hero__title { max-width: 900px; }

.about-work-grid {
display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px; }

.about-work-card, .about-coop-item, .about-cert-item {
border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg); }

.about-work-card {
min-height: 260px;
  padding: 32px; }

.about-work-card i {
width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  background: oklch(from var(--accent) l c h / 0.08);
  border-radius: var(--r-sm);
  font-size: 24px; }

.about-work-card h3, .about-coop-item h3 {
color: var(--fg);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 12px; }

.about-work-card p, .about-coop-item p {
color: var(--fg-soft);
  font-size: 14px;
  line-height: 1.75; }

.about-split {
display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 84px;
  align-items: start; }

.about-coop-list {
display: grid;
  gap: 18px; }

.about-coop-item {
display: grid;
  grid-template-columns: 96px 1fr;
  gap: 34px;
  align-items: start;
  padding: 34px 40px; }

body.page-about .access-num {
display: block;
  color: oklch(from var(--accent) l c h / 0.38);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums; }

.about-cert-grid {
display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 56px; }

.about-cert-item {
min-height: 132px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px; }

.about-cert-item i {
width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: oklch(from var(--accent) l c h / 0.08);
  border-radius: var(--r-sm);
  font-size: 18px; }

.about-cert-item span {
color: var(--fg);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500; }

@media (max-width: 980px) {
  .about-split {
grid-template-columns: 1fr;
    gap: 44px; }

  .about-work-grid, .about-cert-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .about-work-grid, .about-cert-grid { grid-template-columns: 1fr; }

  .about-work-card, .about-coop-item, .about-cert-item { padding: 24px; }

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

/* contact.html */
body.page-contact .contact-hero .hero__title { max-width: 900px; }

.contact-layout {
display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 64px;
  align-items: start; }

.contact-intro {
position: sticky;
  top: calc(var(--nav-h) + 56px); }

.contact-note {
margin-top: 36px;
  padding: 24px;
  border-left: 2px solid var(--accent);
  background: oklch(from var(--accent) l c h / 0.08); }

.contact-note span {
display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em; }

.contact-note p {
color: var(--fg);
  font-size: 16px;
  line-height: 1.6; }

.contact-form {
padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg); }

.form-section {
border: 0;
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px solid var(--line); }

.form-section:last-of-type { margin-bottom: 0; }

.form-section legend {
color: var(--fg);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 22px; }

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

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

.form-field, .form-fieldset {
display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--fg);
  font-size: 13px;
  font-weight: 500; }

.form-fieldset { margin-top: 18px; }

.form-label {
color: var(--fg);
  font-size: 13px;
  font-weight: 500; }

input, select, textarea {
width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-mid);
  border-radius: var(--r-sm);
  background: var(--bg-2);
  color: var(--fg);
  font: inherit;
  font-size: 14px;
  padding: 11px 13px;
  outline: none;
  transition: border-color 0.15s, background 0.15s; }

textarea {
resize: vertical;
  line-height: 1.6; }

input:focus, select:focus, textarea:focus {
border-color: var(--accent);
  background: var(--bg); }

.choice-grid {
display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; }

.choice-grid label {
min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg-2);
  color: var(--fg-soft);
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer; }

.choice-grid input {
width: 15px;
  min-height: 15px;
  accent-color: var(--accent);
  flex: 0 0 auto; }

.form-inline-input { margin-top: 12px; }

.form-field--message { margin-top: 26px; }

.form-actions {
display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  flex-wrap: wrap; }

.form-actions p {
color: var(--fg-mute);
  font-size: 13px;
  line-height: 1.6; }

.contact-info-grid {
display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px; }

.contact-info-card {
border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg); }



.contact-info-kicker {
display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: oklch(from var(--accent) l c h / 0.1);
  color: var(--accent);
  border: 1px solid oklch(from var(--accent) l c h / 0.2);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 24px; }

.contact-info-card h3 {
color: var(--fg);
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 12px; }

.contact-info-card p {
color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px; }

.contact-info-card .scenario-link { margin-top: auto; }

.contact-info-card--wide {
grid-column: 1 / -1;
  min-height: 190px; }

@media (max-width: 980px) {
  .contact-layout { grid-template-columns: 1fr; }

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

  .contact-intro { position: static; }
}

@media (max-width: 640px) {
  .contact-form { padding: 24px; }

  .contact-info-card { padding: 24px; }

  .form-grid--two, .choice-grid { grid-template-columns: 1fr; }
}

/* Unified footer */
body .site-footer.site-footer {
display: block;
  padding: 32px 48px;
  border-top: 1px solid oklch(0.97 0.005 240 / 0.12);
  background: #05070a;
  color: oklch(0.97 0.005 240); }

body .site-footer.site-footer .site-footer__main,
body .site-footer.site-footer .site-footer__bottom {
width: min(1200px, 100%);
  margin: 0 auto; }

body .site-footer.site-footer .site-footer__main {
display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 72px;
  padding: 0 0 24px; }

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

.site-footer__group h3,
.site-footer__contact h3 {
margin: 0 0 18px;
  color: oklch(0.97 0.005 240);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0; }

.site-footer__group a {
display: block;
  width: fit-content;
  color: oklch(0.82 0.015 240 / 0.78);
  font-size: 14px;
  line-height: 1.85;
  text-decoration: none;
  transition: color 0.18s ease; }

.site-footer__group a:hover,
.site-footer__contact a:hover,
.site-footer__legal a:hover { color: var(--accent); }

.site-footer__contact {
justify-self: end;
  max-width: 430px; }

.site-footer__contact p {
margin: 0 0 10px;
  color: oklch(0.82 0.015 240 / 0.78);
  font-size: 14px;
  line-height: 1.85; }

.site-footer__contact span {
color: oklch(0.97 0.005 240);
  font-weight: 500; }

.site-footer__contact a {
color: inherit;
  text-decoration: none;
  transition: color 0.18s ease; }

body .site-footer.site-footer .site-footer__bottom {
display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 24px 0;
  border-top: 1px solid oklch(0.97 0.005 240 / 0.12); }

.site-footer.site-footer .footer-settings {
display: flex;
  align-items: center;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  justify-content: flex-start;
  gap: 28px; }

.site-footer.site-footer .footer-settings__group {
display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap; }

.site-footer.site-footer .footer-settings__label {
min-width: 0;
  color: oklch(0.78 0.015 240 / 0.62);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: none; }

.site-footer.site-footer .footer-settings__opts {
display: flex;
  gap: 4px; }

.site-footer.site-footer .footer-opt {
display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid oklch(0.97 0.005 240 / 0.16);
  border-radius: 4px;
  background: transparent;
  color: oklch(0.78 0.015 240 / 0.68);
  font-family: var(--f-sans);
  font-size: 12px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s; }

.site-footer.site-footer .footer-opt:hover {
color: oklch(0.97 0.005 240);
  border-color: oklch(0.97 0.005 240 / 0.34); }

.site-footer.site-footer .footer-opt.active {
color: var(--accent);
  border-color: oklch(from var(--accent) l c h / 0.58);
  background: oklch(from var(--accent) l c h / 0.12); }

.site-footer.site-footer .footer-opt--color span {
width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c);
  flex: 0 0 auto; }

.site-footer__legal {
color: oklch(0.78 0.015 240 / 0.62);
  font-size: 12px;
  line-height: 1.75;
  text-align: right; }

.site-footer__legal p { margin: 0; }

.site-footer__legal p + p {
display: flex;
  justify-content: flex-end;
  gap: 10px; }

.site-footer__legal a {
color: inherit;
  text-decoration: none;
  transition: color 0.18s ease; }

@media (max-width: 980px) {
  body .site-footer.site-footer .site-footer__main {
grid-template-columns: 1fr;
    gap: 44px; }

  .site-footer__contact {
justify-self: start;
    max-width: none; }

  body .site-footer.site-footer .site-footer__bottom {
align-items: flex-start;
    flex-direction: column; }

  .site-footer__legal { text-align: left; }

  .site-footer__legal p + p { justify-content: flex-start; }
}

@media (max-width: 640px) {
  body .site-footer.site-footer { padding: 32px 24px; }

  body .site-footer.site-footer .site-footer__main { padding: 0 0 24px; }

  body .site-footer.site-footer .site-footer__nav { display: none; }

  .site-footer__contact { width: 100%; }

  .site-footer__contact h3 { margin-bottom: 14px; }

  .site-footer__contact p {
margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.7; }

  body .site-footer.site-footer .site-footer__bottom {
gap: 20px;
    padding: 20px 0 0; }

  .site-footer.site-footer .footer-settings {
width: 100%;
    flex-wrap: wrap;
    gap: 14px; }

  .site-footer.site-footer .footer-settings__group { flex-wrap: wrap; }

  .site-footer__legal {
width: 100%;
    font-size: 11px; }

  .site-footer__legal p + p {
flex-wrap: wrap;
    gap: 6px 10px; }
}
