:root {
  --bg: #eef3fb;
  --frame-bg: #f8fafd;
  --frame-bg-soft: #f3f6fb;
  --bg-strong: #0d1527;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #162033;
  --muted: #4e5e79;
  --topbar-title: #515d76;
  --topbar-copy: #566784;
  --topbar-copy-en: #60708b;
  --line: rgba(15, 24, 44, 0.12);
  --brand: #1bb58f;
  --brand-deep: #11755f;
  --brand-soft: rgba(27, 181, 143, 0.14);
  --brand-cool: #6ca7ff;
  --brand-warm: #ff9f5a;
  --surface-dark: #0a1323;
  --surface-dark-2: #13233e;
  --shadow: 0 30px 90px rgba(8, 14, 28, 0.16);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: #edf2f8;
}

body {
  position: relative;
  background: transparent;
  color: var(--text);
  font: 500 16px/1.9 "Inter", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  display: none;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.16;
}

body::after {
  background:
    radial-gradient(circle at 12% 14%, rgba(27, 181, 143, 0.1), transparent 18%),
    radial-gradient(circle at 88% 16%, rgba(103, 126, 255, 0.1), transparent 18%),
    radial-gradient(circle at 50% 80%, rgba(255, 159, 90, 0.06), transparent 22%);
}

a,
a:visited {
  color: var(--text);
}

p {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  font-family: "Manrope", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.container.main.site-frame {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto 0;
  padding: 0 28px 42px;
  background: #f7f9fc;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px;
  box-shadow: 0 10px 28px rgba(8, 14, 28, 0.08);
  overflow-x: clip;
}

.container.main.site-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.56), transparent 18%),
    radial-gradient(circle at top left, rgba(126, 156, 204, 0.045), transparent 26%),
    radial-gradient(circle at 88% 0%, rgba(108, 167, 255, 0.05), transparent 20%);
}

.site-header-shell {
  position: relative;
  margin-bottom: 18px;
  padding: 0 0 4px;
}

.site-header-shell::before {
  content: "";
  position: absolute;
  inset: 12px -14px -10px;
  border-radius: 28px;
  background: #f7f9fc;
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.site-header-shell > * {
  position: relative;
  z-index: 1;
}

.site-topbar {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 38px 0 20px;
}

.logo {
  flex: 0 0 240px;
  width: 240px;
  height: 92px;
  margin: 10px 0 0;
  background: url("../images/logo.png") no-repeat left center / contain;
}

.brand-lockup {
  display: grid;
  gap: 10px;
  align-content: start;
  flex: 1 1 auto;
  min-width: 0;
}

.site-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: min(100%, 360px);
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(27, 181, 143, 0.16);
  background: linear-gradient(180deg, rgba(232, 248, 244, 0.9), rgba(222, 241, 236, 0.84));
  color: var(--brand-deep);
  font: 800 11px/1.1 "Manrope", "Space Grotesk", sans-serif;
  letter-spacing: 0.12em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.site-badge-compact {
  display: none;
}

.site-badge-full {
  display: inline;
  white-space: normal;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-english-compact {
  display: none;
  color: var(--muted);
  font: 700 11px/1.65 "Inter", "Space Grotesk", sans-serif;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.site-title {
  margin: 0;
  color: var(--topbar-title);
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 800;
  line-height: 1.04;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.site-subtitle {
  margin: 0;
  max-width: 820px;
  color: var(--topbar-copy);
  font-size: 14px;
  line-height: 1.78;
  overflow-wrap: anywhere;
}

.site-subtitle-en {
  color: var(--topbar-copy-en);
  font-family: "Inter", "Manrope", sans-serif;
}

.site-subtitle strong,
.site-subtitle em,
.site-subtitle .latin-accent {
  font-family: "Manrope", "Inter", sans-serif;
  font-style: normal;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  align-self: start;
  justify-self: end;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--bg-strong);
  color: #fff;
  font: 700 12px/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 0 0 18px;
}

.site-nav a,
.site-nav a:visited {
  position: relative;
  display: block;
  min-height: 76px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 24, 44, 0.08);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
  font: 700 16px/1.35 "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.site-nav a span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font: 600 11px/1.5 "Inter", "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.active {
  border-color: rgba(27, 181, 143, 0.36);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 251, 247, 0.94));
  box-shadow: 0 14px 30px rgba(27, 181, 143, 0.1);
}

.site-nav a.active {
  color: var(--brand-deep);
}

.site-nav a.active span {
  color: var(--brand-deep);
}

.site-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(13, 21, 39, 0.05);
  color: var(--brand-deep);
  font: 700 11px/1 "Inter", "Space Grotesk", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.page-hero,
.hero-panel,
.content-card,
.library-card,
.contact-card,
.service-card,
.stat-card,
.case-card,
.media-card,
.highlight-panel,
.qr-placeholder,
.site-footer-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 249, 254, 0.84));
  border: 1px solid rgba(15, 24, 44, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.05);
  overflow: hidden;
}

.content-card::before,
.service-card::before,
.case-card::before,
.contact-card::before,
.media-card::before,
.highlight-panel::before,
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(27, 181, 143, 0.18), rgba(108, 167, 255, 0.18), rgba(255, 255, 255, 0.12));
}

.content-card,
.service-card,
.case-card,
.contact-card,
.media-card,
.stat-card,
.highlight-panel {
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.content-card:hover,
.service-card:hover,
.case-card:hover,
.contact-card:hover,
.media-card:hover,
.stat-card:hover,
.highlight-panel:hover {
  box-shadow: 0 16px 32px rgba(12, 20, 38, 0.08);
  border-color: rgba(27, 181, 143, 0.16);
}

.page-hero {
  background:
    radial-gradient(circle at 12% 20%, rgba(27, 181, 143, 0.18), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(108, 167, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #0a1222 0%, #102239 54%, #17274a 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(8, 14, 26, 0.18);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 24px;
  padding: 28px;
  margin: 14px 0 34px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: 0.7;
  pointer-events: none;
}

.page-hero > div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.page-hero > div:first-child {
  display: grid;
  align-content: start;
  gap: 14px;
}

.page-hero h1,
.page-hero h2,
.page-hero h3 {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.04;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.page-hero p {
  margin: 0;
  max-width: 62ch;
  color: rgba(232, 238, 248, 0.8);
  font-size: 17px;
  line-height: 1.9;
}

.bilingual-line,
.site-section-label,
.site-badge,
.stat-card strong,
.protected-email,
.protected-email-note,
.responsive-note,
.footer-legal,
.hero-actions a,
.button-chip,
.topic-links a,
.pager a {
  font-family: "Inter", "Manrope", "Space Grotesk", sans-serif;
}

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

.hero-actions-single {
  gap: 0;
}

.service-card .hero-actions,
.case-card .hero-actions,
.library-card .hero-actions,
.media-card .hero-actions {
  margin-top: auto;
  padding-top: 16px;
}

.service-card .hero-actions a,
.service-card .hero-actions a:visited,
.case-card .hero-actions a,
.case-card .hero-actions a:visited,
.library-card .hero-actions a,
.library-card .hero-actions a:visited,
.media-card .hero-actions a,
.media-card .hero-actions a:visited {
  min-height: 42px;
  background: linear-gradient(180deg, rgba(251, 253, 255, 0.98), rgba(238, 244, 250, 0.96));
  border-color: rgba(15, 24, 44, 0.08);
  color: var(--text);
  box-shadow: 0 8px 18px rgba(12, 20, 38, 0.05);
}

.service-card .hero-actions a:not(.primary),
.service-card .hero-actions a:not(.primary):visited,
.case-card .hero-actions a:not(.primary),
.case-card .hero-actions a:not(.primary):visited,
.library-card .hero-actions a:not(.primary),
.library-card .hero-actions a:not(.primary):visited,
.media-card .hero-actions a:not(.primary),
.media-card .hero-actions a:not(.primary):visited {
  color: #39506f;
}

.service-card .hero-actions a.primary,
.service-card .hero-actions a.primary:visited,
.case-card .hero-actions a.primary,
.case-card .hero-actions a.primary:visited,
.library-card .hero-actions a.primary,
.library-card .hero-actions a.primary:visited,
.media-card .hero-actions a.primary,
.media-card .hero-actions a.primary:visited {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(27, 181, 143, 1), rgba(136, 236, 204, 0.92));
  color: #072117;
}

.hero-actions a,
.hero-actions a:visited,
.button-chip,
.button-chip:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #f4fbff;
  font: 700 13px/1.2 "Inter", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0.01em;
}

.hero-actions a:not(.primary),
.button-chip:not(.primary) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(180, 205, 255, 0.18);
  color: #f6fbff;
}

.hero-actions a.primary,
.button-chip.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand) 0%, #75e2c4 55%, #9af0da 100%);
  color: #062116;
  box-shadow: 0 10px 24px rgba(27, 181, 143, 0.22);
}

.hero-visual {
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(6, 12, 24, 0.18);
}

.hero-visual img,
.blogimage img,
.teaser img,
.pagetitle img,
.pagetitlex img,
.slides img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 22px;
}

.hero-visual img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.page-grid,
.service-grid,
.story-grid,
.contact-grid,
.stat-grid,
.case-grid,
.library-grid,
.showcase-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

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

.span-4 {
  grid-column: span 4;
}

.span-5 {
  grid-column: span 5;
}

.span-6 {
  grid-column: span 6;
}

.span-7 {
  grid-column: span 7;
}

.span-8 {
  grid-column: span 8;
}

.span-12 {
  grid-column: span 12;
}

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

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

.stat-grid,
.contact-grid,
.showcase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card,
.library-card,
.service-card,
.stat-card,
.case-card,
.media-card,
.contact-card,
.highlight-panel,
.site-footer-card {
  min-width: 0;
  padding: 24px;
}

.content-card,
.service-card,
.case-card,
.library-card,
.media-card,
.contact-card {
  display: flex;
  flex-direction: column;
}

.service-card p,
.case-card p,
.library-card p,
.media-card p {
  flex: 1 1 auto;
}

.service-card img,
.case-card img,
.case-card video,
.library-card img,
.media-card img,
.contact-card img,
.content-card img,
.highlight-panel img,
.topic-entry-card video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: -24px -24px 18px;
  width: calc(100% + 48px);
  background: #000000;
  object-fit: cover;
}

.protected-video-surface,
.protected-video-surface video {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.protected-video-surface {
  -webkit-touch-callout: none;
}

.service-card img,
.case-card img,
.case-card video,
.library-card img,
.media-card img,
.topic-entry-card video {
  aspect-ratio: 16 / 9;
}

.topic-entry-grid {
  align-items: stretch;
}

.topic-group {
  margin-top: 18px;
}

.topic-group + .topic-group {
  margin-top: 28px;
}

.topic-group-header {
  margin-bottom: 14px;
}

.topic-group-header span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.topic-group-header h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.topic-group-header p {
  max-width: 760px;
  margin: 0;
  color: var(--color-muted);
}

.topic-entry-card {
  padding: 20px;
}

.topic-entry-card img,
.topic-entry-card video {
  margin: -20px -20px 14px;
  width: calc(100% + 40px);
  aspect-ratio: 16 / 9;
}

.works-media-page .topic-entry-media {
  position: relative;
  overflow: hidden;
  margin: -20px -20px 14px;
  width: calc(100% + 40px);
  border-radius: 22px;
  background: #08131f;
}

.works-media-page .topic-entry-card img,
.works-media-page .topic-entry-card video {
  margin: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.dome-media-square img,
.dome-media-square video {
  aspect-ratio: 1 / 1;
}

.dome-hero-visual {
  aspect-ratio: 1 / 1;
}

.dome-hero-visual img {
  aspect-ratio: 1 / 1;
  min-height: 0;
  height: 100%;
  object-fit: cover;
}

.topic-entry-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.24;
}

.topic-entry-card p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.72;
  color: var(--color-muted);
}

.topic-entry-card .hero-actions {
  margin-top: auto;
}

.topic-entry-card .hero-actions a.primary {
  min-width: 0;
}

.contact-card img {
  margin: 18px 0 0;
  width: min(220px, 100%);
  border-radius: 18px;
}

.content-card h2,
.content-card h3,
.library-card h3,
.media-card h3,
.service-card h3,
.case-card h3,
.contact-card h3,
.highlight-panel h3 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.18;
  text-wrap: balance;
}

.content-card p,
.library-card p,
.media-card p,
.service-card p,
.case-card p,
.contact-card p,
.highlight-panel p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.bilingual-line {
  margin-top: 10px;
  color: var(--muted);
  font: 500 15px/1.82 "Inter", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  letter-spacing: 0.01em;
}

.detail-list,
.chip-list,
.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li,
.chip-list li,
.keyword-list li {
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(13, 21, 39, 0.04), rgba(13, 21, 39, 0.06));
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid rgba(13, 21, 39, 0.04);
}

.detail-list li {
  border-radius: 14px;
}

.detail-list a,
.detail-list a:visited,
.content-card p a,
.content-card p a:visited,
.service-card p a,
.service-card p a:visited,
.case-card p a,
.case-card p a:visited {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.stat-card strong {
  display: block;
  font: 800 34px/1 "Manrope", "Space Grotesk", sans-serif;
  color: var(--brand-deep);
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.site-intro-panel {
  position: relative;
  padding: 22px 24px;
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 14% 20%, rgba(27, 181, 143, 0.18), transparent 18%),
    radial-gradient(circle at 86% 18%, rgba(108, 167, 255, 0.16), transparent 16%),
    linear-gradient(180deg, rgba(8, 20, 34, 0.98), rgba(15, 34, 58, 0.95));
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.site-intro-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
}

.site-intro-panel h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 800;
}

.site-intro-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.9;
}

.site-intro-panel .chip-list li {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.site-intro-panel p a,
.site-intro-panel p a:visited {
  color: #d9fff5;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 0;
}

.topic-links a,
.topic-links a:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(27, 181, 143, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 249, 245, 0.92));
  color: var(--brand-deep);
  font-family: "Inter", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(17, 117, 95, 0.1);
}

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 12px;
}

.pager a,
.pager a:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 24, 44, 0.1);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font: 700 13px/1.1 "Inter", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  letter-spacing: 0.01em;
}

.pager a.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand) 0%, #65d2b3 100%);
  color: #082018;
}

.pager a[aria-current="page"] {
  pointer-events: none;
}

.titledivider,
.divide h3 {
  position: static;
}

.divide,
.dividea {
  display: flex;
  align-items: center;
  gap: 14px;
  height: auto;
  margin: 48px 0 22px;
}

.divide h3,
.dividea h6,
.dividea {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -0.02em;
  text-transform: none;
}

.divide::before,
.dividea::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7be6c8, var(--brand));
  box-shadow: 0 0 0 8px rgba(27, 181, 143, 0.1);
}

.divide::after,
.dividea::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 181, 143, 0.3), rgba(108, 167, 255, 0.18), transparent 80%);
}

.textblock,
.blogimage,
.postcontent,
.portfolio,
.row,
ul.accordion,
ul.tabs,
.sixteen.columns.row {
  width: 100%;
}

.textblock {
  margin-top: 20px;
}

.one_fourth,
.one_third,
.one_half,
.two_third {
  margin-bottom: 18px;
}

.one_fourth {
  width: calc(25% - 3%);
}

.teaser,
ul.accordion li.accordion-item,
ul.tabs {
  overflow: hidden;
  border: 1px solid rgba(15, 24, 44, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.06);
}

.teaser {
  padding: 10px;
}

.pagetitle,
.pagetitlex,
.slides,
video,
iframe {
  display: block;
  max-width: 100%;
  overflow: hidden;
}

video,
iframe {
  width: 100%;
  height: auto;
  border: 0;
}

ul.accordion li.accordion-item {
  margin-top: 0;
  margin-bottom: 16px;
}

ul.accordion li.accordion-item .toggleswitch,
.dividea {
  padding: 18px 24px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--text);
  background: transparent;
}

ul.accordion li.accordion-item .togglecontent {
  padding: 0 24px 24px;
}

ul.square {
  padding: 0;
  margin-left: 0;
  list-style: none;
}

ul.square li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.9;
}

ul.square li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

ul.tabs {
  padding: 22px;
  margin-bottom: 18px;
}

ul.tabs li {
  display: inline-flex;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 21, 39, 0.05);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

ul.tabs li a,
ul.tabs li a:visited {
  color: inherit;
}

ul.tabs .pagetitle {
  float: none;
  width: 100%;
  margin: 16px 0 0;
}

.pagetitlex {
  float: none;
  width: 100%;
  height: auto;
  margin-bottom: 18px;
}

video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  background: #08131f;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

a.portfolio_selector,
a.portfolio_selectorH {
  margin: 0 8px 10px 0;
  padding: 10px 16px;
  border: 1px solid rgba(15, 24, 44, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  text-shadow: none;
}

a.portfolio_selectorH {
  background: linear-gradient(135deg, var(--brand) 0%, #65d2b3 100%);
  color: #081b14;
  border-color: transparent;
}

.contact-card address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.82;
}

.qr-placeholder {
  display: grid;
  gap: 14px;
  min-height: 220px;
  place-items: center;
  padding: 30px 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(237, 242, 250, 0.95)),
    repeating-linear-gradient(45deg, rgba(27, 181, 143, 0.04) 0 10px, transparent 10px 20px);
  color: var(--muted);
}

.qr-placeholder strong {
  color: var(--text);
  font: 800 22px/1.2 "Manrope", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  text-wrap: balance;
}

.qr-placeholder span {
  max-width: 30ch;
  line-height: 1.58;
  text-wrap: balance;
}

.protected-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(27, 181, 143, 0.18);
  background: linear-gradient(135deg, rgba(27, 181, 143, 0.12), rgba(117, 226, 196, 0.16));
  color: #0b2f24;
  font: 700 15px/1.24 "Inter", "Space Grotesk", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  letter-spacing: 0.02em;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  cursor: default;
}

.protected-email[data-email-role="inline"] {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
}

.protected-email[data-email-role="hero"] {
  min-width: min(100%, 410px);
  padding: 14px 22px;
  font-size: 17px;
  line-height: 1.34;
  text-align: center;
  box-shadow: 0 14px 28px rgba(27, 181, 143, 0.14);
}

.protected-email[data-email-role="footer"] {
  justify-content: flex-start;
  min-height: 0;
  padding: 6px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font: 700 14px/1.7 "Space Grotesk", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  box-shadow: none;
}

.protected-email-note {
  color: var(--muted);
  font-size: 13px;
}

.footerwrap {
  width: min(1180px, calc(100% - 40px));
  left: auto;
  margin: 28px auto 36px;
  padding: 0;
  background: transparent;
}

.footer {
  width: 100%;
}

.site-footer-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 254, 0.9)),
    linear-gradient(135deg, rgba(255,255,255,0.7), rgba(233,239,248,0.74));
}

.site-footer-card h5 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.site-footer-card p,
.site-footer-card .lighti {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.site-footer-card .postlink {
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
}

.site-footer-card .postlink a {
  color: var(--text);
  line-height: 1.65;
}

.site-footer-card .postlink a[href="animation.html"] {
  font-weight: 800;
  color: var(--brand-deep);
}

.footer-legal {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.site-footer-card img {
  width: min(180px, 100%);
  border-radius: 18px;
}

.responsive-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.container.main.site-frame > .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 28px;
}

.container.main.site-frame > .hero-actions .button-chip:not(.primary) {
  min-width: max-content;
  padding: 0 16px;
  border-color: rgba(15, 24, 44, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 245, 252, 0.92));
  color: #48607f;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.04);
}

.container.main.site-frame > .hero-actions .button-chip.primary {
  min-width: max-content;
  padding: 0 16px;
  box-shadow: 0 10px 22px rgba(27, 181, 143, 0.16);
}

.showcase-grid-featured .case-card:first-child {
  grid-column: span 6;
  min-height: 100%;
}

.showcase-grid-featured {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.showcase-grid-featured .case-card {
  grid-column: span 2;
  min-height: 100%;
}

.showcase-grid-featured .case-card:first-child img {
  aspect-ratio: 21 / 9;
}

.showcase-grid-cinema .case-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 254, 0.92)),
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(228,236,247,0.72));
}

.showcase-grid-cinema-wide-first .case-card:first-child {
  grid-column: span 2;
}

.showcase-grid-cinema-wide-first .case-card:first-child video {
  aspect-ratio: 21 / 9;
}

.showcase-grid-cinema-wide-first .case-card.dome-media-square:first-child video {
  aspect-ratio: 1 / 1;
}

.dome-page-hero .hero-visual {
  align-self: start;
}

.works-media-page .hero-visual {
  position: relative;
  align-self: start;
  aspect-ratio: 1 / 1;
}

.works-media-page .hero-visual img {
  min-height: 0;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.works-media-page .showcase-grid .case-card video,
.works-media-page .showcase-grid-cinema-wide-first .case-card:first-child video {
  aspect-ratio: 1 / 1;
}

.works-media-page .showcase-grid-cinema-wide-first .case-card:first-child {
  grid-column: span 1;
}

.highlight-panel-band {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 0;
  padding: 0;
  margin: 20px 0 36px;
  background:
    radial-gradient(circle at top left, rgba(27, 181, 143, 0.18), transparent 20%),
    radial-gradient(circle at 88% 22%, rgba(108, 167, 255, 0.18), transparent 18%),
    linear-gradient(135deg, #081120 0%, #12223a 54%, #16294d 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 68px rgba(9, 15, 28, 0.24);
}

.highlight-panel-band img {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.highlight-panel-band .highlight-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px 30px 32px;
}

.highlight-panel-band h3 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.highlight-panel-band p {
  margin: 0;
  color: rgba(231, 239, 248, 0.78);
  font-size: 16px;
  line-height: 1.92;
}

.hidden-legacy,
#responsive-menu,
.mainmenu,
.header > .titledivider {
  display: none !important;
}

@media only screen and (max-width: 1100px) {
  .site-topbar {
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding-top: 38px;
  }

  .logo {
    width: 230px;
    height: 88px;
    align-self: center;
    margin-top: 10px;
  }

  .brand-lockup {
    gap: 12px;
  }

  .site-badge {
    padding: 11px 18px;
  }

  .brand-english-compact {
    display: block;
    max-width: 34ch;
  }

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

  .page-hero,
  .site-footer-card,
  .highlight-panel-band {
    grid-template-columns: 1fr;
  }

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

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

  .showcase-grid-featured .case-card,
  .showcase-grid-featured .case-card:first-child {
    grid-column: span 1;
  }
}

@media only screen and (max-width: 767px) {
  .container.main.site-frame,
  .footerwrap {
    width: calc(100% - 24px);
  }

  .container.main.site-frame {
    padding: 0 16px 28px;
    border-radius: 26px;
  }

  .site-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 14px 16px;
    padding-top: 38px;
  }

  .logo {
    width: 168px;
    height: 64px;
    grid-column: 1 / 2;
    grid-row: 1;
    margin-top: 16px;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2 / 3;
    grid-row: 1;
  }

  .brand-lockup {
    grid-column: 1 / -1;
    width: 100%;
    gap: 10px;
  }

  .site-nav {
    grid-template-columns: 1fr 1fr;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .site-nav.is-open {
    max-height: 1400px;
    padding: 0 0 18px;
  }

  .page-hero {
    padding: 20px;
    gap: 18px;
  }

  .site-title {
    display: none;
  }

  .site-subtitle {
    display: none;
  }

  .site-subtitle-en {
    display: block;
    font-size: 13px;
    line-height: 1.75;
  }

  .site-section-label,
  .site-badge {
    letter-spacing: 0.1em;
    font-size: 10px;
  }

  .site-badge {
    max-width: 100%;
    padding: 10px 14px;
  }

  .site-badge-full {
    font-size: 10px;
    letter-spacing: 0.07em;
  }

  .brand-english-compact {
    display: block;
    font-size: 10px;
    line-height: 1.7;
  }

  .protected-email[data-email-role="hero"] {
    width: 100%;
    min-width: 0;
    font-size: 15px;
  }

  .page-hero h1,
  .page-hero h2,
  .page-hero h3 {
    font-size: clamp(28px, 10vw, 42px);
    line-height: 1.14;
  }

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

  .page-hero p,
  .content-card p,
  .service-card p,
  .case-card p,
  .contact-card p,
  .highlight-panel p,
  .site-intro-panel p {
    font-size: 15px;
  }

  .content-card h2,
  .content-card h3,
  .service-card h3,
  .case-card h3,
  .contact-card h3,
  .highlight-panel h3,
  .site-intro-panel h2,
  .divide h3,
  .dividea h6,
  .dividea {
    font-size: 24px;
  }

  .content-card,
  .library-card,
  .service-card,
  .stat-card,
  .case-card,
  .media-card,
  .contact-card,
  .highlight-panel,
  .site-footer-card {
    padding: 20px;
  }

  .service-card img,
  .case-card img,
  .library-card img,
  .media-card img,
  .contact-card img,
  .content-card img,
  .highlight-panel img {
    margin: -20px -20px 16px;
    width: calc(100% + 40px);
  }

  .topic-entry-card h3 {
    font-size: 20px;
  }

  .service-grid,
  .case-grid,
  .library-grid,
  .showcase-grid,
  .stat-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid-featured .case-card:first-child,
  .showcase-grid-cinema-wide-first .case-card:first-child,
  .showcase-grid-featured .case-card {
    grid-column: span 1;
  }

  .showcase-grid-featured .case-card:first-child img,
  .showcase-grid-cinema-wide-first .case-card:first-child video {
    aspect-ratio: 16 / 9;
  }

  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8,
  .span-12 {
    grid-column: span 12;
  }

  .one_fourth,
  .one_third,
  .one_half,
  .two_third {
    width: 100%;
    margin-right: 0;
  }

  ul.tabs {
    padding: 18px;
  }
}
