:root {
  --surface: rgba(255, 255, 255, 0.84);
  --ink: #111426;
  --muted: #5c6274;
  --line: rgba(16, 20, 35, 0.09);
  --primary: #0b7b8f;
  --primary-deep: #064f62;
  --shadow: 0 28px 60px rgba(11, 45, 66, 0.12);
  --radius-lg: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(131, 212, 223, 0.42), transparent 26%),
    radial-gradient(circle at right 12%, rgba(11, 123, 143, 0.15), transparent 22%),
    linear-gradient(180deg, #f8f6f0 0%, #f2efe7 46%, #eef2f3 100%);
}

body.mobile-nav-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 22px 0 40px;
  position: relative;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(11, 123, 143, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 123, 143, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 72%);
}

.site-header {
  backdrop-filter: blur(10px);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.brand img { width: 140px; height: auto; }

.mobile-nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11, 123, 143, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  cursor: pointer;
}

.mobile-nav-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

.mobile-nav-toggle span:first-child { top: 18px; }
.mobile-nav-toggle span:last-child { top: 26px; }
.mobile-nav-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.mobile-nav-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav > a,
.nav-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 42px;
}

.site-nav > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.site-nav a.active,
.site-nav a:hover,
.nav-item:hover > a { color: var(--ink); }

.has-submenu:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }

.submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(16, 20, 35, 0.14);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
}

.submenu a:hover {
  background: rgba(11, 123, 143, 0.08);
  color: var(--ink);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 19;
  background: rgba(10, 18, 34, 0.28);
}

.mobile-nav-panel {
  position: absolute;
  right: 12px;
  top: 84px;
  width: min(88vw, 360px);
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 24px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 24px 60px rgba(16, 20, 35, 0.18);
  animation: drawer-in 220ms ease;
}

.mobile-nav-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--ink);
}

.mobile-nav-panel a:hover {
  background: rgba(11,123,143,0.08);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  box-shadow: 0 16px 28px rgba(6, 79, 98, 0.22);
}

.header-cta { padding: 12px 18px; font-size: 14px; }
.button { padding: 14px 24px; font-size: 15px; }

.button-secondary {
  border: 1px solid rgba(11, 123, 143, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

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

.hero-section,
.page-hero {
  margin-top: 28px;
  padding: 32px 40px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(248, 252, 252, 0.92) 100%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-section::after,
.page-hero::after,
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero-section { 
  display: grid; 
  grid-template-columns: 1.25fr 0.75fr; 
  gap: 32px; 
  align-items: center; 
}

.hero-section .product-story-main {
  height: 320px;
}

.hero-section .product-story-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--primary);
}

h1, h2, h3 { margin: 0; font-family: "Outfit", "Noto Sans SC", sans-serif; }

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.contact-copy h2,
.product-detail-copy h2 {
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy h1,
.page-hero h1 { font-size: clamp(42px, 7vw, 76px); }

.hero-text,
.page-hero p,
.section-heading p,
.feature-card p,
.product-card p,
.about-panel p,
.contact-copy p,
.case-card p,
.product-detail-copy p,
.mini-product-card p,
.partner-card p { color: var(--muted); line-height: 1.8; }

.hero-actions { display: flex; gap: 14px; margin-top: 26px; }

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

.hero-metrics div,
.product-card,
.feature-card,
.about-panel,
.principles-panel,
.case-card,
.partner-card,
.mini-product-card,
.product-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.partner-card,
.mini-product-card,
.product-detail {
  position: relative;
  overflow: hidden;
}

.partner-card::before,
.mini-product-card::before,
.product-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(125, 227, 239, 0.18), transparent 28%);
}

.hero-metrics div { padding: 18px; }
.hero-metrics dt { color: var(--muted); font-size: 13px; }
.hero-metrics dd { margin: 10px 0 0; font-size: 20px; font-weight: 700; }

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-platforms span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 123, 143, 0.08);
  border: 1px solid rgba(11, 123, 143, 0.12);
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual { display: grid; place-items: center; }

.visual-frame {
  position: relative;
  width: min(100%, 420px);
  min-height: 520px;
  padding: 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 20%, rgba(92, 227, 255, 0.22), transparent 32%),
    linear-gradient(180deg, #0b1323 0%, #14243a 42%, #0a1627 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 80px rgba(10, 22, 39, 0.34);
  overflow: hidden;
  animation: float-in 700ms ease both;
}

.visual-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.visual-portrait {
  position: relative;
  margin: 26px auto 0;
  width: min(100%, 300px);
  aspect-ratio: 0.82;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(76, 218, 255, 0.88), rgba(0, 0, 0, 0) 34%),
    radial-gradient(circle at 50% 45%, rgba(86, 224, 255, 0.44), rgba(0, 0, 0, 0) 28%),
    linear-gradient(180deg, rgba(8, 18, 32, 0.1), rgba(8, 18, 32, 0.6)),
    linear-gradient(135deg, #17243a 0%, #20395b 54%, #0e1728 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.visual-portrait::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 28%, rgba(152, 247, 255, 0.96), transparent 18%),
    radial-gradient(circle at 50% 22%, rgba(137, 224, 255, 0.35), transparent 40%),
    radial-gradient(circle at 50% 42%, rgba(96, 221, 255, 0.55), transparent 24%),
    radial-gradient(circle at 36% 34%, rgba(11, 19, 35, 0.92), transparent 4%),
    radial-gradient(circle at 64% 34%, rgba(11, 19, 35, 0.92), transparent 4%),
    radial-gradient(circle at 50% 54%, rgba(11, 19, 35, 0.45), transparent 9%),
    linear-gradient(180deg, rgba(112, 231, 255, 0.9) 0%, rgba(52, 146, 184, 0.74) 34%, rgba(12, 23, 36, 0.1) 100%);
}

.visual-portrait::after {
  content: "";
  position: absolute;
  inset: auto -40px -20px;
  height: 180px;
  background:
    radial-gradient(circle at 50% 0%, rgba(92, 227, 255, 0.62), transparent 36%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(8, 18, 32, 0.9));
}

.visual-caption {
  position: absolute;
  inset: auto 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 255, 255, 0.84);
}

.visual-caption span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-caption strong { font-size: 18px; letter-spacing: 0.08em; }

.hero-product-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.hero-product-chip {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(11, 123, 143, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 34px rgba(12, 28, 44, 0.08);
}

.hero-product-chip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-product-chip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.section {
  margin-top: 26px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.section::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 123, 143, 0.24), transparent);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto 24px;
  max-width: 860px;
  text-align: center;
}
.section-heading h2,
.contact-copy h2 { font-size: clamp(34px, 5vw, 52px); }

.product-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.product-anchor-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(11, 123, 143, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-anchor-nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 123, 143, 0.28);
  box-shadow: 0 14px 24px rgba(11, 45, 66, 0.08);
}

.product-page-list,
.product-gallery-grid,
.product-text-grid {
  display: grid;
  gap: 20px;
}

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

.product-page-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(11, 123, 143, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(241, 247, 248, 0.88));
  box-shadow: 0 20px 44px rgba(10, 22, 39, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 123, 143, 0.24);
  box-shadow: 0 26px 54px rgba(10, 22, 39, 0.14);
}

.product-page-card img,
.product-story-main img,
.product-gallery-grid > img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(10, 22, 39, 0.16);
}

.product-page-card h3 {
  margin: 10px 0 10px;
  font-size: 28px;
}

.product-page-card p {
  margin: 0 0 18px;
  line-height: 1.82;
}

.product-page-card .button {
  width: fit-content;
}

.about-layout,
.contact-card,
.product-overview-grid,
.brand-strip,
.case-logo-grid { display: grid; gap: 20px; }

.product-overview-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.brand-strip { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.case-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.about-layout { grid-template-columns: 1.2fr 0.8fr; }

.feature-card,
.product-card,
.about-panel,
.principles-panel,
.case-card,
.partner-card { padding: 24px; }

.mini-product-card { padding: 16px; }

.mini-product-card img,
.partner-card img,
.partner-text-logo,
.product-detail-media img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
  border-radius: 18px;
}

.partner-text-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
}

.partner-text-logo span {
  display: inline-block;
  padding: 14px 28px;
  background: var(--brand-color, var(--primary));
  color: #fff;
  border-radius: 999px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.product-detail-media {
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(230, 243, 245, 0.92));
  border: 1px solid rgba(11, 123, 143, 0.1);
}

.mini-product-card h3,
.partner-card h3,
.feature-card h3,
.principles-panel h3 { margin: 14px 0 8px; font-size: 22px; }

.feature-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-list,
.principles-panel ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.principles-panel li {
  position: relative;
  margin-top: 10px;
  padding-left: 18px;
  color: var(--muted);
}

.feature-list li::before,
.principles-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

.contact-card {
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(11, 123, 143, 0.14);
  border-radius: 30px;
  background: linear-gradient(135deg, #0c7385 0%, #0e5566 100%);
  color: #fff;
}

.contact-copy .eyebrow,
.contact-copy p { color: rgba(255, 255, 255, 0.84); }

.contact-info {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-info dl { margin: 0; display: grid; gap: 14px; }
.contact-info dt { color: rgba(255, 255, 255, 0.62); font-size: 13px; }
.contact-info dd { margin: 6px 0 0; font-size: 16px; line-height: 1.7; }

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

.about-contact-list p {
  margin: 0;
  display: grid;
  grid-template-columns: 22px auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-contact-list p img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-top: 4px;
}

.about-contact-list p strong {
  font-weight: 700;
  color: var(--muted);
}

.about-contact-list p span {
  color: var(--muted);
  word-break: break-word;
}

.product-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  padding: 20px;
}

.product-detail-copy { padding: 10px 4px; }
.product-detail-copy h2 { font-size: clamp(28px, 4vw, 46px); }

.partner-card {
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.partner-card:hover,
.mini-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(16, 20, 35, 0.12);
}

.product-detail:hover {
  box-shadow: 0 24px 48px rgba(16, 20, 35, 0.1);
}

.product-story {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.product-story-main {
  padding: 14px;
  border-radius: 30px;
  border: 1px solid rgba(11, 123, 143, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(229, 242, 244, 0.92));
}

.product-story-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 46px);
}

.product-story-copy p {
  margin: 0 0 16px;
}

.product-gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.product-gallery-grid.single-media {
  grid-template-columns: 1fr;
}

.product-gallery-grid > img {
  min-height: 280px;
  object-fit: cover;
}

.product-gallery-grid .flow-side-image {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.flow-html-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-auto-flow: column;
  column-gap: 24px;
  row-gap: 10px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(11, 123, 143, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(236, 246, 247, 0.94));
  box-shadow: 0 18px 32px rgba(10, 22, 39, 0.08);
}

.flow-html-card-compact {
  height: 100%;
  overflow: hidden;
}

.flow-col {
  display: contents;
}

.flow-col article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  min-height: 0;
}

.flow-col article h4 {
  margin: 0;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
}

.flow-col article h4 img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  flex: 0 0 24px;
  background: transparent;
  display: inline-block;
  vertical-align: middle;
}

.flow-col article p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.mini-case-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.mini-case-card {
  margin: 0;
  text-align: center;
}

.mini-case-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(10, 22, 39, 0.12);
}

.mini-case-card p {
  margin: 10px 0 0;
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(16, 20, 35, 0.06);
  color: var(--muted);
  text-align: center;
}

.product-text-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.product-text-grid article {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-text-grid article p {
  margin: 0;
  line-height: 1.82;
}

.reveal-block {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.site-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 16px 4px 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-records {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.footer-record-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-record-link:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.footer-record-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.lrbs-official-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.lrbs-stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.lrbs-stage-frame,
.lrbs-stage-note,
.lrbs-shot {
  position: relative;
  overflow: hidden;
}

.lrbs-stage-frame {
  padding: 18px;
  border: 1px solid rgba(11, 123, 143, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(11, 123, 143, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(233, 244, 245, 0.96));
  box-shadow: 0 24px 48px rgba(10, 22, 39, 0.1);
}

.lrbs-stage-frame img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(10, 22, 39, 0.14);
}

.lrbs-stage-overlay {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.lrbs-stage-overlay span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 123, 143, 0.12);
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.lrbs-stage-notes {
  display: grid;
  gap: 18px;
}

.lrbs-stage-note {
  padding: 22px;
  border: 1px solid rgba(11, 123, 143, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 247, 248, 0.94));
  box-shadow: 0 18px 36px rgba(10, 22, 39, 0.08);
}

.lrbs-stage-note h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.lrbs-stage-note p {
  margin: 0;
}

.lrbs-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.lrbs-shot {
  padding: 16px;
  border: 1px solid rgba(11, 123, 143, 0.12);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(236, 246, 247, 0.92));
  box-shadow: 0 22px 40px rgba(10, 22, 39, 0.08);
}

.lrbs-shot-wide,
.lrbs-shot-tall,
.lrbs-shot-medium { grid-column: auto; }

.lrbs-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(10, 22, 39, 0.14);
}

.lrbs-shot h3 {
  margin: 14px 0 8px;
  font-size: 22px;
  text-align: center;
}

.lrbs-shot p {
  margin: 0;
  text-align: center;
}

@keyframes drawer-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float-in {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1100px) {
  .hero-section,
  .about-layout,
  .contact-card,
  .product-detail,
  .product-story,
  .product-overview-grid,
  .product-page-list,
  .product-gallery-grid,
  .product-text-grid,
  .lrbs-stage,
  .lrbs-official-gallery,
  .brand-strip,
  .case-logo-grid,
  .hero-product-ribbon { grid-template-columns: 1fr; }

  .lrbs-mosaic { grid-template-columns: 1fr; }
  .lrbs-shot-wide,
  .lrbs-shot-tall,
  .lrbs-shot-medium { grid-column: auto; }
  .mini-case-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .site-header { border-radius: 28px; padding: 18px; }
  .site-nav,
  .header-cta { display: none; }
  .mobile-nav-toggle { display: inline-block; }
}

@media (max-width: 720px) {
  .page-shell { width: min(calc(100% - 18px), var(--container)); padding-top: 10px; }

  .site-header,
  .hero-section,
  .page-hero,
  .section,
  .contact-card,
  .product-detail { padding: 20px; }

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

  .hero-metrics { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-platforms,
  .product-anchor-nav { gap: 10px; }
  .site-footer { text-align: center; }
  .footer-records { justify-content: center; }
  .product-page-card { grid-template-columns: 1fr; }
  .product-page-card h3 { font-size: 24px; }
  .product-gallery-grid > img { min-height: 220px; }
  .lrbs-stage-note h3 { font-size: 22px; }
  .about-contact-list p { font-size: 16px; }
  .flow-html-card {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    row-gap: 14px;
  }
  .flow-col { display: grid; gap: 12px; }
  .mini-case-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow-html-card-compact { height: auto; }
  .product-gallery-grid .flow-side-image { height: auto; min-height: 0; }
}
