:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --soft-line: #e8e8ed;
  --surface: #ffffff;
  --canvas: #f5f5f7;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-width: auto;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.42);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure,
ol,
ul {
  margin: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(29, 29, 31, 0.1);
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.nav,
.section,
.section-shell,
.site-footer {
  width: calc(100% - 40px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 44px;
  max-width: var(--max-width);
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  height: 44px;
  min-height: 44px;
  gap: 8px;
  flex: 0 0 auto;
}

.brand-logo-window {
  display: block;
  align-self: center;
  width: 43px;
  height: 18px;
  overflow: hidden;
}

.brand-logo {
  width: 105px;
  max-width: none;
  height: auto;
  transform: translate(-14px, -19px);
}

.brand-copy {
  display: grid;
  align-content: center;
  align-self: center;
  gap: 1px;
  line-height: 1;
}

.brand-company {
  color: #1d1d1f;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.brand-company-en {
  color: #6e6e73;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-self: center;
  min-width: 0;
  gap: 34px;
  color: #424245;
  font-size: 12px;
}

.nav-links a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #1d1d1f;
}

.nav-actions {
  display: flex;
  justify-self: end;
  align-items: center;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
}

.language-switcher button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid rgba(29, 29, 31, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #1d1d1f;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(29, 29, 31, 0.06);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.language-switcher button:hover {
  border-color: rgba(29, 29, 31, 0.24);
  background: #fff;
  color: #1d1d1f;
  box-shadow: 0 6px 16px rgba(29, 29, 31, 0.1);
  transform: translateY(-1px);
}

.language-switcher button:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.42);
  outline-offset: 3px;
}

.hero {
  padding: 168px 0;
  text-align: center;
}

.hero-copy {
  max-width: 850px;
  margin: 0 auto;
}

.eyebrow,
.product-kicker {
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
}

.eyebrow {
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(46px, 6.5vw, 78px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-text {
  max-width: 730px;
  margin: 26px auto 0;
  color: #515154;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 34px;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-hover);
}

.button-secondary {
  border-color: rgba(0, 113, 227, 0.34);
  background: transparent;
  color: var(--accent);
}

.button-secondary:hover {
  border-color: var(--accent);
  background: var(--surface);
}

.product-suite {
  background: var(--surface);
}

.product-suite .section-shell {
  padding-bottom: 118px;
}

.section-shell {
  padding: 118px 0 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading-left {
  margin-bottom: 64px;
}

.section-heading h2,
.technology-heading h2,
.teamx h2,
.contact h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
}

.section-heading p:not(.eyebrow),
.technology-heading p:not(.eyebrow),
.contact p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.62;
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
  min-height: 528px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #fbfbfd;
}

.featured-product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 8% 64px 0;
}

.featured-product h3 {
  margin-top: 12px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.08;
}

.featured-product-copy > p:not(.product-kicker) {
  max-width: 500px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.product-notes {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 0;
  gap: 0;
  list-style: none;
}

.product-notes li {
  padding: 0 16px;
  color: #424245;
  font-size: 14px;
}

.product-notes li:first-child {
  padding-left: 0;
}

.product-notes li + li {
  border-left: 1px solid var(--line);
}

.featured-product-visual {
  display: flex;
  justify-content: center;
  align-items: end;
  height: 528px;
  overflow: hidden;
  padding-top: 52px;
  background: #eef5e5;
}

.featured-product-visual img {
  width: min(100%, 220px);
  height: auto;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 18px 40px rgba(29, 29, 31, 0.12);
}

.product-index {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
  isolation: isolate;
  overflow: visible;
}

@media (max-width: 1100px) {
  .product-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .product-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .product-index {
    grid-template-columns: 1fr;
  }
}

.product-index-item {
  --hover-y: 0px;
  --hover-scale: 1;

  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 292px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  gap: 18px;
  background: #fbfbfd;
  transform-origin: center bottom;
  will-change: transform;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease-out,
    background-color 220ms ease-out;
}

.product-index-item:hover {
  --hover-y: -12px;
  --hover-scale: 1.12;

  z-index: 5;
  border-color: rgba(0, 113, 227, 0.34);
  background: #fff;
  box-shadow:
    0 30px 70px rgba(29, 29, 31, 0.16),
    0 8px 20px rgba(0, 113, 227, 0.08);
}

.product-index-item:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.42);
  outline-offset: 5px;
}

.product-index-item img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  transform-origin: center;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-index-item:hover img {
  box-shadow: 0 12px 26px rgba(29, 29, 31, 0.14);
  transform: translateY(-2px) scale(1.08);
}

.product-index-item .product-kicker {
  font-size: 12px;
}

.product-index-item h3 {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.25;
}

.product-index-item > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.product-teamx {
  overflow: hidden;
  margin-top: 30px;
  border-radius: 24px;
}

.product-teamx .teamx-inner {
  grid-template-columns: minmax(0, 1fr);
  width: auto;
  max-width: none;
  padding: 30px 40px;
  gap: 0;
}

.product-teamx .teamx-copy {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.product-teamx .teamx-heading,
.product-teamx .teamx-core-lines {
  text-align: left;
}

.product-teamx .teamx-heading {
  position: relative;
}

.teamx.product-teamx .teamx-copy > .teamx-heading > p.teamx-status {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  margin: 0;
  color: #6eb5ff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.teamx.product-teamx h2 {
  max-width: 920px;
  margin-top: 0;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.25;
}

.teamx-core-lines {
  display: grid;
  max-width: 980px;
  margin-top: 0;
  gap: 4px;
}

.teamx-core-lines p {
  color: #f5f5f7;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: normal;
}

.teamx-core-lines p:not(:first-child) {
  color: #d2d2d7;
}

.technology {
  padding: 104px 0 72px;
}

.technology-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.76fr);
  grid-template-areas:
    "eyebrow ."
    "title copy";
  align-items: start;
  margin-bottom: 48px;
  column-gap: 56px;
  row-gap: 16px;
}

.technology-heading .eyebrow {
  grid-area: eyebrow;
  margin: 0;
}

.technology-heading h2 {
  grid-area: title;
}

.technology-heading p:not(.eyebrow) {
  grid-area: copy;
  align-self: start;
  margin: 0;
}

.technology-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.technology-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(180px, 0.3fr);
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  gap: 28px;
}

.technology-index {
  color: var(--accent);
  font-size: 13px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.technology-list h3 {
  font-size: clamp(24px, 2.3vw, 30px);
  font-weight: 650;
  line-height: 1.2;
}

.technology-list div p {
  max-width: 650px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.technology-list div .technology-metrics {
  display: flex;
  flex-wrap: wrap;
  margin-top: 14px;
  color: #515154;
  font-size: 13px;
  line-height: 1.5;
  gap: 8px 18px;
}

.technology-metrics strong {
  color: var(--ink);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.technology-tag {
  color: #515154;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
}

.teamx {
  background: #000;
  color: #f5f5f7;
}

.teamx-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.64fr);
  width: calc(100% - 40px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 118px 0;
  gap: 92px;
}

.teamx .eyebrow {
  color: #6eb5ff;
}

.teamx h2 {
  font-size: clamp(52px, 6vw, 82px);
}

.teamx-lead {
  max-width: 580px;
  margin-top: 24px;
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 500;
  line-height: 1.4;
}

.teamx-copy > p:not(.eyebrow):not(.teamx-lead) {
  max-width: 620px;
  margin-top: 20px;
  color: #a1a1a6;
  font-size: 17px;
  line-height: 1.62;
}

.teamx-principles {
  align-self: end;
  margin: 0;
  padding: 0;
  border-top: 1px solid #424245;
  list-style: none;
}

.teamx-principles li {
  display: flex;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid #424245;
  color: #f5f5f7;
  font-size: 18px;
  font-weight: 500;
}

.teamx-principles span {
  width: 46px;
  color: #a1a1a6;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.contact {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 80px 0 104px;
  background: var(--surface);
  text-align: center;
}

.contact-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.contact h2 {
  white-space: nowrap;
}

.contact-emails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 34px;
  gap: 16px 24px;
}

.contact-emails span {
  color: #424245;
  font-size: 16px;
  font-weight: 500;
}

.contact-emails span + span {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }
}

.site-footer {
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.site-footer p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  margin: 0;
}

.product-detail-page {
  background: var(--surface);
}

.product-detail-main {
  padding: 82px 0 0;
}

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

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  min-height: 500px;
  padding: 78px 0 86px;
}

.product-detail-copy {
  max-width: 920px;
}

.product-title-lockup {
  display: block;
  margin-top: 16px;
}

.product-detail-visual {
  display: flex;
  justify-content: center;
}

.product-detail-icon {
  width: clamp(176px, 18vw, 252px);
  height: clamp(176px, 18vw, 252px);
  border-radius: clamp(38px, 4.2vw, 58px);
  object-fit: cover;
  box-shadow:
    0 24px 58px rgba(29, 29, 31, 0.14),
    0 0 0 1px rgba(29, 29, 31, 0.07);
}

.product-title-lockup h1 {
  margin-top: 0;
  max-width: 820px;
  font-size: clamp(54px, 6vw, 86px);
}

.product-detail-lead {
  max-width: 690px;
  margin-top: 24px;
  color: #515154;
  font-size: 23px;
  line-height: 1.5;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 12px;
}

.button-disabled {
  border-color: var(--soft-line);
  background: #f5f5f7;
  color: #86868b;
  cursor: default;
}

.button-disabled:hover {
  transform: none;
}

.product-detail-section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.product-detail-section h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
}

.product-detail-section > p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.product-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  margin-top: 44px;
  gap: 18px;
}

.product-shot-placeholder {
  display: flex;
  position: relative;
  min-height: 350px;
  aspect-ratio: 9 / 16;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(0, 113, 227, 0.08), rgba(245, 245, 247, 0) 54%),
    #fbfbfd;
}

.product-shot-placeholder::before {
  content: "";
  position: absolute;
  inset: 68px 22px 88px;
  border: 1px dashed rgba(29, 29, 31, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(245, 245, 247, 0.6)),
    repeating-linear-gradient(
      135deg,
      rgba(29, 29, 31, 0.04) 0,
      rgba(29, 29, 31, 0.04) 8px,
      transparent 8px,
      transparent 16px
    );
}

.product-shot-media {
  padding: 0;
  border-color: rgba(29, 29, 31, 0.1);
  background: #05070b;
  box-shadow: 0 18px 42px rgba(29, 29, 31, 0.14);
}

.product-shot-media::before {
  display: none;
}

.product-shot-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-shot-wide {
  min-height: 0;
  aspect-ratio: 1916 / 821;
  border-radius: 28px;
}

.product-shot-index {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.product-shot-placeholder strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 180px;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.25;
}

.product-shot-placeholder span:last-child {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.product-story-panel {
  max-width: 900px;
  margin-top: 42px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.product-story-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-story-list li {
  display: grid;
  grid-template-columns: minmax(120px, 0.24fr) minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.product-story-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.product-story-list li:last-child {
  padding-bottom: 0;
}

.product-story-list strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.35;
}

.product-story-list span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 38px;
  border-radius: 24px;
  background: #000;
  color: #f5f5f7;
}

.download-panel h2 {
  color: #f5f5f7;
  font-size: clamp(30px, 3vw, 44px);
}

.download-access {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: end;
  gap: 18px;
}

.download-option {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #f5f5f7;
}

.download-qr-wrap {
  position: relative;
  display: block;
  width: 112px;
  height: 112px;
}

.download-qr-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain;
}

.download-platform-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  padding: 2px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(29, 29, 31, 0.18);
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.download-qr-placeholder {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(245, 245, 247, 0.95), rgba(255, 255, 255, 0.95));
  box-shadow: inset 0 0 0 1px rgba(29, 29, 31, 0.12);
}

.download-qr-placeholder > span {
  position: absolute;
  bottom: 12px;
  color: #86868b;
  font-size: 13px;
  font-weight: 600;
}

.download-url {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  color: #f5f5f7;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
}

.button-store-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

.download-option .button-secondary,
.download-access .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #f5f5f7;
}

.download-option .button-secondary:hover,
.download-access .button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

#more-products-title {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.product-more-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(96px, 1fr));
  max-width: 640px;
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  gap: 26px;
}

.product-more-list a {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-weight: 650;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.product-more-list img {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(29, 29, 31, 0.12);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-more-name {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
  text-overflow: ellipsis;
}

.product-more-list a:hover {
  color: var(--accent);
  transform: translateY(-4px);
}

.product-more-list a:hover img {
  box-shadow: 0 16px 34px rgba(29, 29, 31, 0.16);
  transform: scale(1.04);
}

.product-more-list a:focus-visible {
  border-radius: 16px;
  outline: 3px solid rgba(0, 113, 227, 0.28);
  outline-offset: 8px;
}

.reveal {
  --reveal-y: 0px;
  --hover-y: 0px;
  --hover-scale: 1;

  opacity: 1;
  transform: translateY(calc(var(--reveal-y) + var(--hover-y))) scale(var(--hover-scale));
}

.js-enabled .reveal {
  --reveal-y: 14px;

  opacity: 0;
  transition:
    opacity 240ms ease-out,
    transform 240ms ease-out;
}

.js-enabled .product-index-item.reveal {
  transition:
    opacity 240ms ease-out,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease-out,
    background-color 220ms ease-out;
}

.js-enabled .reveal.is-visible {
  --reveal-y: 0px;

  opacity: 1;
}

@media (max-width: 980px) {
  .product-detail-hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .product-detail-visual {
    justify-content: flex-start;
  }

  .product-detail-icon {
    width: clamp(128px, 28vw, 176px);
    height: clamp(128px, 28vw, 176px);
    border-radius: clamp(28px, 6vw, 40px);
  }

  .download-panel {
    grid-template-columns: 1fr;
  }

  .download-access {
    justify-content: flex-start;
  }

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

  .product-story-panel {
    max-width: 760px;
  }

  .product-shot-placeholder {
    min-height: 320px;
  }

  .product-more-list {
    grid-template-columns: repeat(4, minmax(76px, 1fr));
    max-width: none;
  }
}

@media (max-width: 640px) {
  .product-detail-hero {
    min-height: 0;
    padding: 56px 0 64px;
  }

  .product-title-lockup {
    margin-top: 12px;
  }

  .product-title-lockup h1 {
    font-size: clamp(42px, 10vw, 54px);
  }

  .product-detail-section {
    padding: 56px 0;
  }

  .product-story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-story-panel {
    margin-top: 34px;
    padding-top: 24px;
  }

  .product-story-list li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .product-shot-placeholder {
    min-height: 0;
    max-height: 520px;
  }

  .download-panel {
    padding: 28px;
  }

  .download-access {
    justify-content: center;
  }

  .download-qr-wrap {
    width: 104px;
    height: 104px;
  }

  .product-more-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .product-more-list img {
    width: 66px;
    height: 66px;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Legal Policy Pages Styling */
.legal-article-shell {
  width: min(calc(100% - 40px), 800px);
  margin: 0 auto;
  padding: 80px 0 100px;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-header h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.legal-meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-content {
  color: #333336;
  font-size: 16px;
  line-height: 1.75;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 650;
  color: var(--ink);
  margin: 40px 0 16px;
  padding-top: 12px;
  border-top: 1px solid var(--soft-line);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0 10px;
}

.legal-content p {
  margin-bottom: 18px;
}

.legal-content ul, .legal-content ol {
  margin: 0 0 20px 20px;
  padding: 0;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-nav-footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

