:root {
  --ink: #151613;
  --ink-soft: #23251f;
  --paper: #f4f3ed;
  --paper-deep: #ebe9df;
  --white: #ffffff;
  --yellow: #ffd21f;
  --yellow-light: #ffe36c;
  --coral: #ff5360;
  --amber: #ffac2f;
  --green: #36c783;
  --muted: #71736b;
  --line: rgba(21, 22, 19, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --container: 1240px;
  --header-height: 82px;
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 38px;
  --shadow: 0 28px 80px rgba(29, 30, 25, 0.1);
}

/* CMS-powered news, lightbox and utility states */

.news-preview-section {
  border-top: 1px solid var(--line);
}

.news-list-hero {
  background: var(--paper);
}

.news-list-section {
  min-height: 560px;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.news-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.news-card-cover {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--paper-deep);
}

.news-card-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.news-card:hover .news-card-cover img {
  transform: scale(1.035);
}

.news-card > div {
  padding: 27px;
}

.news-card > div > span {
  color: #8a8c83;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.news-card h2,
.news-card h3 {
  margin: 14px 0 0;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.news-card p {
  min-height: 68px;
  margin: 15px 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.news-detail {
  background: var(--white);
}

.news-detail-hero {
  padding: 165px 0 80px;
  background:
    radial-gradient(circle at 80% 25%, rgba(255, 210, 31, 0.3), transparent 34%),
    var(--paper);
}

.news-back {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.news-detail-hero h1 {
  max-width: 920px;
  margin: 25px 0 28px;
  font-size: clamp(42px, 5.6vw, 76px);
  font-weight: 890;
  letter-spacing: -0.06em;
  line-height: 1.12;
}

.news-detail-meta {
  display: flex;
  gap: 18px;
  color: #777970;
  font-size: 11px;
  font-weight: 720;
}

.news-detail-meta span + span::before {
  margin-right: 18px;
  content: "·";
}

.news-detail-cover {
  overflow: hidden;
  margin-top: 62px;
  border-radius: 32px;
}

.news-detail-cover img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.news-detail-body {
  max-width: 820px;
  padding-top: 70px;
  padding-bottom: 120px;
  color: #3f413b;
  font-size: 17px;
  line-height: 2.05;
}

.empty-state {
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px dashed rgba(21, 22, 19, 0.22);
  border-radius: 32px;
  text-align: center;
}

.empty-state > span {
  color: #92948c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.empty-state h2 {
  margin: 18px 0 8px;
  font-size: 31px;
}

.empty-state p {
  color: var(--muted);
  font-size: 13px;
}

.error-page {
  display: flex;
  min-height: 72vh;
  align-items: center;
  padding: 170px 0 100px;
}

.error-page h1 {
  max-width: 700px;
  margin: 22px 0 15px;
  font-size: clamp(45px, 6vw, 80px);
  font-weight: 890;
  letter-spacing: -0.06em;
}

.error-page p {
  margin: 0 0 30px;
  color: var(--muted);
}

.qr-lightbox[hidden] {
  display: none;
}

.qr-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(9, 10, 8, 0.88);
  backdrop-filter: blur(16px);
}

.qr-lightbox img {
  width: min(520px, 86vw);
  max-height: 82vh;
  border: 15px solid var(--white);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.35);
  object-fit: contain;
}

.qr-lightbox button {
  position: fixed;
  top: 22px;
  right: 26px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
}

.lightbox-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .news-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .news-card-grid {
    grid-template-columns: 1fr;
  }

  .news-detail-hero {
    padding: 135px 0 58px;
  }

  .news-detail-cover {
    width: calc(100% - 32px);
    margin-top: 32px;
    border-radius: 20px;
  }

  .news-detail-body {
    padding-top: 45px;
    padding-bottom: 80px;
    font-size: 15px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC",
    Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--yellow);
  color: var(--ink);
}

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(21, 22, 19, 0.08);
  background: rgba(244, 243, 237, 0.84);
  backdrop-filter: blur(22px) saturate(145%);
}

.site-header-dark {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(21, 22, 19, 0.82);
  color: var(--white);
}

.header-layout {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-lockup {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 1px solid rgba(21, 22, 19, 0.12);
  border-radius: 14px;
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-2deg);
}

.is-inverse .brand-logo {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.22);
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-wordmark strong {
  font-size: 17px;
  font-weight: 850;
  letter-spacing: 0.025em;
}

.brand-wordmark small {
  color: #898b82;
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.21em;
}

.is-inverse .brand-wordmark small {
  color: rgba(255, 255, 255, 0.46);
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.3vw, 36px);
}

.primary-navigation a {
  position: relative;
  padding: 31px 0 28px;
  color: #5f6159;
  font-size: 13px;
  font-weight: 670;
  transition: color 180ms ease;
}

.site-header-dark .primary-navigation a {
  color: rgba(255, 255, 255, 0.58);
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-header-dark .primary-navigation a::after {
  background: var(--yellow);
}

.primary-navigation a:hover,
.primary-navigation a.is-active {
  color: var(--ink);
}

.site-header-dark .primary-navigation a:hover,
.site-header-dark .primary-navigation a.is-active {
  color: var(--white);
}

.primary-navigation a:hover::after,
.primary-navigation a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-contact {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 760;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.site-header-dark .header-contact {
  background: var(--yellow);
  color: var(--ink);
}

.header-contact:hover {
  box-shadow: 0 12px 24px rgba(21, 22, 19, 0.16);
  transform: translateY(-2px);
}

.link-arrow {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease;
}

a:hover .link-arrow {
  transform: translateX(4px);
}

.mobile-navigation {
  display: none;
}

.page-kicker,
.section-kicker {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.page-kicker {
  color: #6d6f67;
}

.section-kicker {
  margin-bottom: 18px;
  color: #8a8c83;
}

.section {
  padding: 136px 0;
}

.section-white {
  background: var(--white);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 62px;
}

.section-title h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 4.2vw, 59px);
  font-weight: 880;
  letter-spacing: -0.06em;
  line-height: 1.14;
}

.section-title > p {
  max-width: 440px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.section-title-inverse {
  color: var(--white);
}

.section-title-inverse .section-kicker {
  color: var(--yellow);
}

.section-title-inverse > p {
  color: rgba(255, 255, 255, 0.54);
}

.button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 760;
}

.button {
  min-height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  box-shadow: 0 13px 30px rgba(21, 22, 19, 0.2);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.18);
}

.text-button {
  padding: 9px 0;
  border-bottom: 1px solid rgba(21, 22, 19, 0.3);
}

.text-button-inverse {
  border-bottom-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

/* Home */

.home-hero {
  position: relative;
  min-height: 890px;
  overflow: hidden;
  padding: 164px 0 0;
  background: var(--paper);
}

.hero-grid-lines,
.inner-hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(21, 22, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 22, 19, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
  pointer-events: none;
}

.hero-ambient {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-ambient-one {
  top: 60px;
  right: -150px;
  width: 720px;
  height: 720px;
  background: radial-gradient(
    circle,
    rgba(255, 210, 31, 0.3),
    rgba(255, 210, 31, 0) 68%
  );
}

.hero-ambient-two {
  bottom: -280px;
  left: -260px;
  width: 660px;
  height: 660px;
  background: radial-gradient(
    circle,
    rgba(255, 227, 108, 0.22),
    rgba(255, 227, 108, 0) 68%
  );
}

.home-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(580px, 1.14fr);
  gap: 78px;
  align-items: center;
}

.home-hero-copy {
  padding: 30px 0 60px;
}

.home-hero-copy h1 {
  margin: 25px 0 0;
  font-size: clamp(60px, 6vw, 88px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1.04;
}

.home-hero-copy h1 em {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-style: normal;
}

.home-hero-copy h1 em::after {
  position: absolute;
  z-index: -1;
  right: -7px;
  bottom: 5px;
  left: 0;
  height: 20px;
  border-radius: 4px;
  background: var(--yellow);
  content: "";
  transform: rotate(-1deg);
}

.home-hero-copy > p {
  max-width: 570px;
  margin: 30px 0 0;
  color: #62645c;
  font-size: 17px;
  line-height: 1.95;
}

.hero-status {
  display: grid;
  width: fit-content;
  grid-template-columns: auto auto;
  gap: 3px 10px;
  align-items: center;
  margin-top: 54px;
}

.hero-status > span {
  grid-row: 1 / 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(54, 199, 131, 0.12);
}

.hero-status strong {
  font-size: 11px;
  font-weight: 790;
}

.hero-status small {
  color: #898b82;
  font-size: 9px;
}

.hero-product-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 42px;
  background:
    radial-gradient(
      circle at 54% 47%,
      rgba(255, 210, 31, 0.18),
      transparent 38%
    ),
    linear-gradient(150deg, #292b25, #151613 72%);
  box-shadow:
    0 46px 100px rgba(21, 22, 19, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-product-stage::before {
  position: absolute;
  top: 98px;
  left: 50%;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.hero-product-stage::after {
  position: absolute;
  top: 153px;
  left: 50%;
  width: 330px;
  height: 330px;
  border: 1px dashed rgba(255, 210, 31, 0.16);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.hero-stage-header {
  position: absolute;
  z-index: 5;
  top: 26px;
  right: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.hero-stage-header > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(54, 199, 131, 0.12);
}

.phone-frame {
  position: relative;
  overflow: hidden;
  border: 7px solid #171815;
  border-radius: 32px;
  background: #f7f7f7;
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.phone-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.phone-island {
  position: absolute;
  z-index: 3;
  top: 7px;
  left: 50%;
  width: 39%;
  height: 12px;
  border-radius: 99px;
  background: #050505;
  transform: translateX(-50%);
}

.hero-phone {
  position: absolute;
  z-index: 2;
  width: 238px;
  height: 510px;
  transform-origin: bottom center;
}

.hero-phone-left {
  bottom: 46px;
  left: 52px;
  opacity: 0.84;
  transform: rotate(-8deg) scale(0.86);
}

.hero-phone-center {
  z-index: 3;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) scale(1.04);
  animation: phone-breathe 5s ease-in-out infinite;
}

.hero-phone-right {
  right: 44px;
  bottom: 52px;
  opacity: 0.84;
  transform: rotate(8deg) scale(0.86);
}

.hero-stage-caption {
  position: absolute;
  z-index: 6;
  right: 27px;
  bottom: 25px;
  display: flex;
  min-width: 216px;
  flex-direction: column;
  gap: 4px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(21, 22, 19, 0.78);
  color: var(--white);
  backdrop-filter: blur(15px);
}

.hero-stage-caption span {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 780;
}

.hero-stage-caption strong {
  font-size: 11px;
  font-weight: 740;
}

.hero-marquee {
  position: relative;
  z-index: 3;
  display: flex;
  height: 108px;
  align-items: center;
  justify-content: space-between;
  margin-top: 82px;
  border-top: 1px solid var(--line);
  color: #6e7068;
  font-size: 12px;
  font-weight: 680;
}

.hero-marquee i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 210, 31, 0.15);
}

.metric-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.metric-band-layout {
  display: grid;
  grid-template-columns: 1.32fr repeat(3, 1fr);
}

.metric-band-layout > * {
  display: flex;
  min-height: 190px;
  justify-content: center;
  flex-direction: column;
  padding: 30px 34px;
  border-right: 1px solid var(--line);
}

.metric-band-layout > *:last-child {
  border-right: 0;
}

.metric-band-intro {
  padding-left: 0 !important;
}

.metric-band-intro span {
  margin-bottom: 12px;
  color: #92938c;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.metric-band-intro strong {
  max-width: 210px;
  font-size: 21px;
  line-height: 1.45;
}

.metric-band article strong {
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 860;
  letter-spacing: -0.055em;
}

.metric-band article span {
  margin-top: 11px;
  font-size: 12px;
  font-weight: 730;
}

.metric-band article small {
  margin-top: 5px;
  color: #92938c;
  font-size: 9px;
}

.home-business-section {
  background: var(--paper);
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.product-card-copy {
  position: relative;
  z-index: 3;
  display: flex;
  height: 350px;
  flex-direction: column;
  padding: 29px;
}

.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-meta span,
.business-row-meta span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(21, 22, 19, 0.15);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.product-card-meta small,
.business-row-meta small {
  color: rgba(21, 22, 19, 0.5);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.product-card-copy > div:nth-child(2) {
  margin-top: 43px;
}

.product-category {
  color: rgba(21, 22, 19, 0.55);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.product-card h3 {
  margin: 9px 0 13px;
  font-size: 35px;
  font-weight: 880;
  letter-spacing: -0.05em;
}

.product-card p {
  margin: 0;
  color: rgba(21, 22, 19, 0.67);
  font-size: 12px;
  line-height: 1.8;
}

.circle-link {
  position: absolute;
  right: 27px;
  bottom: 26px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(21, 22, 19, 0.18);
  border-radius: 50%;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.circle-link:hover {
  background: var(--ink);
  color: var(--white);
}

.product-card-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 318px;
  overflow: hidden;
}

.product-card-visual .phone-frame {
  position: absolute;
  z-index: 2;
  top: 36px;
  left: 50%;
  width: 188px;
  height: 406px;
  border-width: 6px;
  border-radius: 27px;
  transform: translateX(-50%) rotate(-3deg);
  transition: transform 320ms cubic-bezier(0.22, 0.8, 0.36, 1);
}

.product-card:hover .product-card-visual .phone-frame {
  transform: translateX(-50%) translateY(-12px) rotate(0);
}

.product-card-glow {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
  transform: translateX(-50%);
}

.product-tone-coral .product-card-visual,
.product-card.product-tone-coral {
  background-color: #fff0ef;
}

.product-tone-coral .product-card-visual {
  background:
    radial-gradient(circle at 50% 26%, #ff9b97, transparent 61%),
    #ff655f;
}

.product-tone-yellow .product-card-visual {
  background:
    radial-gradient(circle at 50% 26%, #ffe579, transparent 61%),
    var(--yellow);
}

.product-tone-amber .product-card-visual {
  background:
    radial-gradient(circle at 50% 26%, #ffd789, transparent 61%),
    var(--amber);
}

.section-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: #73756d;
  font-size: 11px;
}

.ecosystem-section {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.ecosystem-layout {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 95px;
  align-items: center;
}

.ecosystem-copy h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(39px, 4.2vw, 58px);
  font-weight: 870;
  letter-spacing: -0.06em;
  line-height: 1.16;
}

.ecosystem-copy > p {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.9;
}

.ecosystem-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 29px 0 28px;
}

.ecosystem-points span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.ecosystem-map {
  position: relative;
  min-height: 570px;
}

.ecosystem-center {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: flex;
  width: 184px;
  height: 184px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  box-shadow:
    0 0 0 14px rgba(255, 210, 31, 0.07),
    0 30px 60px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
}

.ecosystem-center img {
  width: 70px;
  height: 70px;
  margin-bottom: 5px;
  border-radius: 20px;
}

.ecosystem-center strong {
  font-size: 18px;
  font-weight: 880;
}

.ecosystem-center span {
  margin-top: 4px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ecosystem-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ecosystem-orbit-one {
  width: 370px;
  height: 370px;
}

.ecosystem-orbit-two {
  width: 520px;
  height: 520px;
  border-style: dashed;
  animation: orbit-spin 38s linear infinite;
}

.ecosystem-node {
  position: absolute;
  z-index: 5;
  display: grid;
  min-width: 170px;
  grid-template-columns: auto 1fr;
  gap: 3px 11px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(39, 41, 35, 0.92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.ecosystem-node > span {
  display: grid;
  width: 34px;
  height: 34px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.ecosystem-node strong {
  font-size: 12px;
}

.ecosystem-node small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
}

.ecosystem-node-one {
  top: 82px;
  left: 23px;
}

.ecosystem-node-two {
  top: 212px;
  right: -8px;
}

.ecosystem-node-three {
  bottom: 65px;
  left: 76px;
}

.capability-section {
  background: var(--paper-deep);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid article {
  min-height: 310px;
  padding: 31px 29px;
  border-right: 1px solid var(--line);
  transition: background 200ms ease;
}

.capability-grid article:last-child {
  border-right: 0;
}

.capability-grid article:hover {
  background: rgba(255, 255, 255, 0.64);
}

.capability-grid article > span {
  color: #92948b;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.capability-grid h3 {
  margin: 92px 0 17px;
  font-size: 22px;
  font-weight: 840;
}

.capability-grid p {
  margin: 0;
  color: #72746c;
  font-size: 12px;
  line-height: 1.8;
}

.evidence-section {
  background: var(--white);
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(500px, 1.05fr) minmax(0, 0.95fr);
  gap: 90px;
  align-items: center;
}

.evidence-visual {
  padding: 46px 46px 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(21, 22, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 22, 19, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

.evidence-chart {
  display: grid;
  height: 380px;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: end;
  padding: 0 36px;
  border-bottom: 1px solid var(--line);
}

.evidence-chart > div {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}

.evidence-chart span {
  margin-bottom: 13px;
  color: #74766e;
  font-size: 10px;
}

.evidence-chart i {
  width: 100%;
  min-height: 80px;
  border-radius: 16px 16px 0 0;
  background: var(--yellow);
}

.evidence-chart > div:first-child i {
  background: var(--ink);
}

.evidence-chart strong {
  position: absolute;
  margin-top: 88px;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 17px;
  writing-mode: vertical-rl;
}

.evidence-chart > div:nth-child(2) strong {
  color: var(--ink);
}

.evidence-visual > small {
  display: block;
  margin-top: 20px;
  color: #8a8c83;
  font-size: 9px;
  text-align: center;
}

.evidence-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 870;
  letter-spacing: -0.06em;
  line-height: 1.16;
}

.evidence-copy p {
  margin: 27px 0 33px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

.service-entry-section {
  background: #efede4;
}

.service-entry-layout,
.product-scan-layout {
  display: grid;
  grid-template-columns: 1fr minmax(430px, 0.8fr);
  gap: 90px;
  align-items: center;
}

.service-entry-layout h2,
.product-scan-layout h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(39px, 4.2vw, 58px);
  font-weight: 870;
  letter-spacing: -0.06em;
  line-height: 1.15;
}

.service-entry-layout > div:first-child > p,
.product-scan-layout > div:first-child > p {
  max-width: 580px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.qr-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 25px 58px rgba(21, 22, 19, 0.08);
}

.qr-card-dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.qr-image {
  display: block;
  overflow: hidden;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.qr-image:hover {
  border-color: rgba(21, 22, 19, 0.3);
  transform: translateY(-2px);
}

.qr-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  image-rendering: pixelated;
}

.qr-card > div:last-child {
  display: flex;
  flex-direction: column;
}

.qr-card > div:last-child > span {
  color: #8a8c83;
  font-size: 9px;
  font-weight: 720;
}

.qr-card strong {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 850;
}

.qr-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.qr-card-dark p {
  color: rgba(255, 255, 255, 0.45);
}

/* Inner pages */

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 115px;
  border-bottom: 1px solid var(--line);
}

.inner-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.42fr 0.58fr;
  gap: 100px;
  align-items: end;
}

.inner-hero h1 {
  max-width: 900px;
  margin: 25px 0 0;
  font-size: clamp(55px, 6.4vw, 90px);
  font-weight: 890;
  letter-spacing: -0.075em;
  line-height: 1.06;
}

.inner-hero-layout > div:last-child {
  padding-bottom: 7px;
}

.inner-hero-layout p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.page-index {
  display: block;
  margin-top: 34px;
  color: #999a93;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.business-list-section {
  padding: 38px 0 136px;
}

.business-row {
  display: grid;
  min-height: 630px;
  grid-template-columns: minmax(0, 0.98fr) minmax(480px, 1.02fr);
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.business-row-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 48px;
}

.business-row-meta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}

.business-row h2 {
  margin: 11px 0 0;
  font-size: 54px;
  font-weight: 890;
  letter-spacing: -0.06em;
}

.business-row h3 {
  margin: 10px 0 0;
  font-size: 20px;
  font-weight: 760;
}

.business-row-copy > p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.business-row-scenes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 29px 0 34px;
}

.business-row-scenes span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 680;
}

.business-row-visual {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
}

.business-row.product-tone-coral .business-row-visual {
  background:
    radial-gradient(circle at 52% 44%, #ffaaa8, transparent 52%),
    var(--coral);
}

.business-row.product-tone-yellow .business-row-visual {
  background:
    radial-gradient(circle at 52% 44%, var(--yellow-light), transparent 52%),
    var(--yellow);
}

.business-row.product-tone-amber .business-row-visual {
  background:
    radial-gradient(circle at 52% 44%, #ffd78e, transparent 52%),
    var(--amber);
}

.business-row-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.business-row-visual .phone-frame {
  position: absolute;
  z-index: 3;
  top: 82px;
  left: 50%;
  width: 254px;
  height: 550px;
  transform: translateX(-50%) rotate(2.5deg);
  transition: transform 350ms cubic-bezier(0.22, 0.8, 0.36, 1);
}

.business-row:hover .business-row-visual .phone-frame {
  transform: translateX(-50%) translateY(-12px) rotate(0);
}

.business-row-giant-number {
  position: absolute;
  z-index: 1;
  right: 15px;
  bottom: -52px;
  color: rgba(255, 255, 255, 0.32);
  font-family: Arial, sans-serif;
  font-size: 250px;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
}

.business-network-section {
  background: var(--ink);
  color: var(--white);
}

.network-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.network-flow article {
  position: relative;
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
  text-align: center;
}

.network-flow article:last-child {
  border-right: 0;
}

.network-flow article::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -16px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  content: "→";
  font-family: Arial, sans-serif;
  transform: translateY(-50%);
}

.network-flow article:last-child::after {
  display: none;
}

.network-flow article > span {
  position: absolute;
  top: 23px;
  left: 25px;
  color: rgba(255, 255, 255, 0.36);
  font-family: Arial, sans-serif;
  font-size: 9px;
}

.network-flow strong {
  font-size: 25px;
  font-weight: 820;
}

.network-flow small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
}

.partner-value-section {
  background: var(--paper);
}

.partner-value-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.partner-value-grid article,
.feature-grid article {
  min-height: 300px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.partner-value-grid article:hover,
.feature-grid article:hover {
  background: var(--white);
  transform: translateY(-5px);
}

.partner-value-grid article > span,
.feature-grid article > span {
  color: #989a91;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.partner-value-grid h3,
.feature-grid h3 {
  margin: 100px 0 15px;
  font-size: 22px;
  font-weight: 830;
}

.partner-value-grid p,
.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

/* Product detail */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 62px;
  color: rgba(21, 22, 19, 0.48);
  font-size: 10px;
}

.breadcrumb strong {
  color: var(--ink);
}

.product-detail-hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: 144px 0 76px;
}

.product-detail-hero.product-tone-coral {
  background: #fff0ef;
}

.product-detail-hero.product-tone-yellow {
  background: #fff8cf;
}

.product-detail-hero.product-tone-amber {
  background: #fff1d9;
}

.product-detail-orbit {
  position: absolute;
  top: 80px;
  right: -210px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(21, 22, 19, 0.09);
  border-radius: 50%;
}

.product-detail-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  gap: 70px;
  align-items: center;
}

.product-detail-copy h1 {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: clamp(51px, 5.5vw, 76px);
  font-weight: 890;
  letter-spacing: -0.07em;
  line-height: 1.08;
}

.product-detail-copy > p {
  max-width: 610px;
  margin: 28px 0 0;
  color: #62645c;
  font-size: 15px;
  line-height: 1.95;
}

.product-detail-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border-top: 1px solid rgba(21, 22, 19, 0.14);
}

.product-detail-stats > div {
  padding: 20px 15px 0 0;
}

.product-detail-stats strong {
  display: block;
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.product-detail-stats span {
  display: block;
  margin-top: 7px;
  color: #777970;
  font-size: 9px;
}

.product-detail-stage {
  position: relative;
  min-height: 650px;
}

.product-detail-stage::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(21, 22, 19, 0.09);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.detail-phone {
  position: absolute;
  top: 45px;
  width: 245px;
  height: 530px;
}

.detail-phone-front {
  z-index: 3;
  left: 50%;
  transform: translateX(-30%) rotate(4deg);
}

.detail-phone-back {
  z-index: 2;
  left: 70px;
  opacity: 0.86;
  transform: rotate(-7deg) scale(0.91);
}

.benefit-ticket {
  position: absolute;
  z-index: 2;
  top: 150px;
  left: 12px;
  display: flex;
  width: 285px;
  min-height: 160px;
  justify-content: center;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(21, 22, 19, 0.14);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-7deg);
}

.benefit-ticket > span {
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.benefit-ticket strong {
  margin-top: 14px;
  font-size: 25px;
}

.benefit-ticket small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
}

.floating-product-label {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 49px;
  display: grid;
  min-width: 206px;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(21, 22, 19, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 40px rgba(21, 22, 19, 0.12);
  backdrop-filter: blur(12px);
}

.floating-product-label > span {
  display: grid;
  width: 36px;
  height: 36px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.floating-product-label > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floating-product-label strong {
  font-size: 12px;
}

.floating-product-label small {
  color: var(--muted);
  font-size: 8px;
}

.scenario-section {
  background: var(--paper-deep);
}

.scenario-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(550px, 1.2fr);
  gap: 110px;
  align-items: center;
}

.scenario-layout h2 {
  margin: 0;
  font-size: clamp(38px, 4.1vw, 57px);
  font-weight: 870;
  letter-spacing: -0.06em;
  line-height: 1.16;
}

.scenario-layout > div:first-child > p {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.scenario-cloud {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.scenario-cloud > span {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  font-weight: 780;
  transition: transform 180ms ease;
}

.scenario-cloud > span:hover {
  transform: translateX(6px);
}

.scenario-cloud small {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--ink);
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 8px;
}

.process-section {
  background: var(--ink);
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  list-style: none;
}

.process-grid li {
  min-height: 280px;
  padding: 26px;
  border-right: 1px solid var(--line-light);
}

.process-grid li:last-child {
  border-right: 0;
}

.process-grid li > span {
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 9px;
}

.process-grid li > div {
  margin-top: 117px;
}

.process-grid h3 {
  margin: 0;
  font-size: 21px;
}

.process-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  line-height: 1.7;
}

.product-scan-section {
  background: var(--white);
}

/* Footer and CTA */

.contact-band {
  padding: 103px 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.18), transparent 27%),
    var(--yellow);
}

.contact-band-layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
}

.contact-band-layout > div:first-child > span {
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.contact-band h2 {
  margin: 19px 0 0;
  font-size: clamp(44px, 5.3vw, 72px);
  font-weight: 900;
  letter-spacing: -0.065em;
}

.contact-band p {
  margin: 18px 0 0;
  color: rgba(21, 22, 19, 0.67);
  font-size: 13px;
}

.contact-band-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 3px;
}

.contact-band .text-button-inverse {
  border-bottom-color: rgba(21, 22, 19, 0.35);
  color: var(--ink);
}

.site-footer {
  padding: 82px 0 26px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1.75fr;
  gap: 100px;
  padding-bottom: 72px;
}

.footer-intro p {
  margin: 31px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  line-height: 1.85;
}

.footer-navigation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.footer-navigation > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-navigation span {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
}

.footer-navigation a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  transition: color 180ms ease;
}

.footer-navigation a:hover {
  color: var(--yellow);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
}

/* Motion */

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms cubic-bezier(0.22, 0.8, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 0.8, 0.36, 1);
  transition-delay: calc(var(--reveal-order, 0) * 55ms);
}

.motion-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes phone-breathe {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1.04);
  }
  50% {
    transform: translateX(-50%) translateY(-9px) scale(1.04);
  }
}

@keyframes orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 1120px) {
  :root {
    --container: 980px;
  }

  .primary-navigation {
    gap: 19px;
  }

  .home-hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    gap: 42px;
  }

  .home-hero-copy h1 {
    font-size: 62px;
  }

  .hero-product-stage {
    min-height: 570px;
  }

  .hero-phone {
    width: 210px;
    height: 455px;
  }

  .hero-phone-left {
    left: 27px;
  }

  .hero-phone-right {
    right: 20px;
  }

  .product-card {
    min-height: 620px;
  }

  .product-card-copy {
    padding: 25px;
  }

  .ecosystem-layout {
    gap: 45px;
  }

  .ecosystem-node-one {
    left: 0;
  }

  .ecosystem-node-two {
    right: -20px;
  }

  .evidence-layout {
    gap: 55px;
  }

  .business-row {
    grid-template-columns: 1fr 0.95fr;
  }

  .business-row-copy {
    padding: 40px;
  }

  .product-detail-hero-layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
    gap: 35px;
  }

  .detail-phone-back {
    left: 30px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 36px, 760px);
  }

  .primary-navigation,
  .header-contact {
    display: none;
  }

  .mobile-navigation {
    display: block;
  }

  .mobile-navigation > summary {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 14px;
    list-style: none;
    cursor: pointer;
  }

  .site-header-dark .mobile-navigation > summary {
    border-color: rgba(255, 255, 255, 0.14);
  }

  .mobile-navigation > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-navigation > summary span {
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .mobile-navigation[open] > summary span:first-child {
    transform: translateY(4.2px) rotate(45deg);
  }

  .mobile-navigation[open] > summary span:last-child {
    transform: translateY(-4.2px) rotate(-45deg);
  }

  .mobile-navigation-panel {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    padding: 16px 18px 30px;
    border-top: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 30px 70px rgba(21, 22, 19, 0.16);
  }

  .mobile-navigation-panel nav {
    display: grid;
  }

  .mobile-navigation-panel nav a {
    display: grid;
    min-height: 58px;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    font-weight: 760;
  }

  .mobile-navigation-panel nav small {
    color: #999b92;
    font-family: Arial, sans-serif;
    font-size: 8px;
  }

  .mobile-navigation-panel > a {
    display: block;
    margin-top: 22px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 750;
  }

  .home-hero {
    min-height: auto;
    padding-top: 128px;
  }

  .home-hero-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .home-hero-copy {
    padding-bottom: 30px;
  }

  .home-hero-copy h1 {
    font-size: clamp(49px, 12vw, 72px);
  }

  .hero-product-stage {
    min-height: 590px;
  }

  .hero-phone {
    width: 220px;
    height: 480px;
  }

  .hero-phone-left {
    left: 8%;
  }

  .hero-phone-right {
    right: 8%;
  }

  .hero-marquee {
    margin-top: 50px;
  }

  .metric-band-layout {
    grid-template-columns: repeat(3, 1fr);
  }

  .metric-band-intro {
    grid-column: 1 / -1;
    min-height: 120px !important;
    padding-left: 28px !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

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

  .product-card {
    min-height: 580px;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section {
    padding: 100px 0;
  }

  .ecosystem-layout,
  .evidence-layout,
  .service-entry-layout,
  .product-scan-layout,
  .scenario-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .ecosystem-map {
    min-height: 560px;
  }

  .capability-grid,
  .partner-value-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-grid article:nth-child(2) {
    border-right: 0;
  }

  .capability-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .evidence-visual {
    order: 2;
  }

  .inner-hero {
    padding: 150px 0 90px;
  }

  .inner-hero-layout {
    grid-template-columns: 1fr;
    gap: 39px;
  }

  .business-row {
    grid-template-columns: 1fr;
  }

  .business-row-visual {
    min-height: 590px;
  }

  .network-flow,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .network-flow article:nth-child(2),
  .process-grid li:nth-child(2) {
    border-right: 0;
  }

  .network-flow article:nth-child(-n + 2),
  .process-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .network-flow article:nth-child(2)::after {
    display: none;
  }

  .product-detail-hero-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-stage {
    min-height: 620px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-band-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 28px);
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-wordmark strong {
    font-size: 15px;
  }

  .home-hero-copy h1 {
    font-size: 49px;
    line-height: 1.08;
  }

  .home-hero-copy > p {
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero-product-stage {
    min-height: 455px;
    border-radius: 28px;
  }

  .hero-phone {
    width: 160px;
    height: 350px;
    border-width: 5px;
    border-radius: 23px;
  }

  .hero-phone-left {
    bottom: 30px;
    left: -13px;
  }

  .hero-phone-center {
    bottom: 20px;
  }

  .hero-phone-right {
    right: -14px;
    bottom: 31px;
  }

  .hero-stage-caption {
    right: 14px;
    bottom: 14px;
    min-width: 183px;
    padding: 12px;
  }

  .hero-marquee {
    height: auto;
    flex-wrap: wrap;
    gap: 15px 10px;
    padding: 28px 0;
  }

  .metric-band-layout {
    grid-template-columns: 1fr;
  }

  .metric-band-layout > * {
    min-height: 135px;
    padding: 24px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-band-layout > *:last-child {
    border-bottom: 0;
  }

  .metric-band-intro {
    padding-left: 8px !important;
  }

  .section {
    padding: 82px 0;
  }

  .section-title {
    margin-bottom: 39px;
  }

  .section-title h2,
  .ecosystem-copy h2,
  .evidence-copy h2,
  .service-entry-layout h2,
  .product-scan-layout h2,
  .scenario-layout h2 {
    font-size: 38px;
  }

  .product-card {
    min-height: 560px;
    border-radius: 27px;
  }

  .product-card-copy {
    height: 320px;
  }

  .ecosystem-layout {
    min-height: auto;
  }

  .ecosystem-map {
    min-height: 440px;
    transform: scale(0.84);
    transform-origin: center;
  }

  .ecosystem-orbit-one {
    width: 320px;
    height: 320px;
  }

  .ecosystem-orbit-two {
    width: 430px;
    height: 430px;
  }

  .ecosystem-node {
    min-width: 150px;
  }

  .ecosystem-node-two {
    right: -48px;
  }

  .ecosystem-node-three {
    left: 16px;
  }

  .capability-grid,
  .partner-value-grid,
  .feature-grid,
  .scenario-cloud {
    grid-template-columns: 1fr;
  }

  .capability-grid article {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-grid article:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .capability-grid h3,
  .partner-value-grid h3,
  .feature-grid h3 {
    margin-top: 65px;
  }

  .evidence-visual {
    padding: 29px 20px 22px;
  }

  .evidence-chart {
    height: 310px;
    gap: 14px;
    padding: 0 12px;
  }

  .qr-card {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 16px;
  }

  .qr-card .qr-image {
    width: min(220px, 100%);
    justify-self: center;
  }

  .qr-card > div:last-child {
    align-items: center;
    text-align: center;
  }

  .qr-card strong {
    font-size: 16px;
  }

  .inner-hero h1 {
    font-size: 49px;
  }

  .business-row {
    border-radius: 27px;
  }

  .business-row-copy {
    padding: 28px 23px 35px;
  }

  .business-row-meta {
    margin-bottom: 47px;
  }

  .business-row h2 {
    font-size: 42px;
  }

  .business-row-visual {
    min-height: 500px;
  }

  .business-row-visual .phone-frame {
    top: 60px;
    width: 220px;
    height: 475px;
  }

  .business-row-giant-number {
    font-size: 190px;
  }

  .network-flow,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .network-flow article,
  .process-grid li {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .network-flow article::after {
    top: auto;
    right: 50%;
    bottom: -16px;
    content: "↓";
    transform: translateX(50%);
  }

  .network-flow article:nth-child(2)::after {
    display: grid;
  }

  .process-grid li > div {
    margin-top: 80px;
  }

  .product-detail-hero {
    padding-top: 120px;
  }

  .breadcrumb {
    margin-bottom: 45px;
  }

  .product-detail-copy h1 {
    font-size: 46px;
  }

  .product-detail-stats {
    grid-template-columns: 1fr;
  }

  .product-detail-stats > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(21, 22, 19, 0.1);
  }

  .product-detail-stage {
    min-height: 540px;
  }

  .detail-phone {
    width: 200px;
    height: 435px;
  }

  .detail-phone-front {
    left: 44%;
  }

  .detail-phone-back {
    left: 3px;
  }

  .benefit-ticket {
    top: 135px;
    left: -25px;
    width: 230px;
  }

  .floating-product-label {
    right: 0;
    bottom: 23px;
    min-width: 185px;
  }

  .contact-band {
    padding: 78px 0;
  }

  .contact-band h2 {
    font-size: 45px;
  }

  .contact-band-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Product hub */

.product-hub-hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  padding: 165px 0 80px;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 210, 31, 0.3), transparent 30%),
    var(--paper);
}

.product-hub-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  gap: 70px;
  align-items: center;
}

.product-hub-hero h1 {
  margin: 24px 0 0;
  font-size: clamp(55px, 6vw, 84px);
  font-weight: 890;
  letter-spacing: -0.075em;
  line-height: 1.06;
}

.product-hub-hero p {
  max-width: 590px;
  margin: 29px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.product-hub-devices {
  position: relative;
  min-height: 620px;
}

.product-hub-devices::before {
  position: absolute;
  top: 52%;
  left: 50%;
  width: 540px;
  height: 540px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.hub-phone {
  position: absolute;
  top: 65px;
  width: 230px;
  height: 498px;
}

.hub-phone-1 {
  z-index: 2;
  left: 15px;
  opacity: 0.84;
  transform: rotate(-8deg) scale(0.9);
}

.hub-phone-2 {
  z-index: 4;
  left: 50%;
  transform: translateX(-50%) scale(1.02);
}

.hub-phone-3 {
  z-index: 3;
  right: 10px;
  opacity: 0.84;
  transform: rotate(8deg) scale(0.9);
}

.hub-device-caption {
  position: absolute;
  z-index: 6;
  right: 11px;
  bottom: 27px;
  display: grid;
  min-width: 190px;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hub-device-caption .live-dot {
  grid-row: 1 / 3;
}

.hub-device-caption strong {
  font-size: 11px;
}

.hub-device-caption small {
  color: var(--muted);
  font-size: 8px;
}

.product-entry-intro {
  background: var(--ink);
  color: var(--white);
}

.product-entry-layout {
  display: grid;
  grid-template-columns: 1fr minmax(430px, 0.78fr);
  gap: 90px;
  align-items: center;
}

.product-entry-layout h2 {
  margin: 0;
  font-size: clamp(40px, 4.6vw, 61px);
  font-weight: 870;
  letter-spacing: -0.06em;
  line-height: 1.14;
}

.product-entry-layout > div:first-child > p {
  max-width: 600px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.9;
}

.entry-chain {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 31px;
}

.entry-chain span {
  padding: 9px 12px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
}

.entry-chain i {
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-style: normal;
}

.product-showcase-item {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 105px 0;
  border-bottom: 1px solid var(--line);
}

.product-showcase-item.product-tone-coral {
  background: #fff0ef;
}

.product-showcase-item.product-tone-yellow {
  background: #fff8cf;
}

.product-showcase-item.product-tone-amber {
  background: #fff1d9;
}

.product-showcase-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(500px, 1.05fr) minmax(0, 0.95fr);
  gap: 90px;
  align-items: center;
}

.product-showcase-item:nth-child(even) .showcase-devices {
  order: 2;
}

.showcase-devices {
  position: relative;
  min-height: 570px;
}

.showcase-devices::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(21, 22, 19, 0.1);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.showcase-phone {
  position: absolute;
  top: 20px;
  width: 240px;
  height: 520px;
}

.showcase-phone-front {
  z-index: 3;
  left: 50%;
  transform: translateX(-26%) rotate(3deg);
}

.showcase-phone-back {
  z-index: 2;
  left: 30px;
  opacity: 0.85;
  transform: rotate(-7deg) scale(0.9);
}

.showcase-benefits {
  position: absolute;
  z-index: 2;
  top: 145px;
  left: 8px;
  width: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-6deg);
}

.showcase-benefits > span {
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.showcase-benefits > strong {
  display: block;
  margin-top: 15px;
  font-size: 24px;
}

.showcase-benefits > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-top: 20px;
}

.showcase-benefits i {
  padding: 8px;
  border-radius: 9px;
  background: var(--paper);
  font-size: 9px;
  font-style: normal;
  text-align: center;
}

.showcase-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
}

.showcase-index > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.showcase-index small {
  color: rgba(21, 22, 19, 0.48);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.showcase-copy h2 {
  margin: 10px 0 0;
  font-size: 54px;
  font-weight: 890;
  letter-spacing: -0.06em;
}

.showcase-copy h3 {
  margin: 10px 0 0;
  font-size: 19px;
}

.showcase-copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.showcase-copy ul {
  display: grid;
  gap: 10px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.showcase-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
}

.showcase-copy li span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-size: 9px;
}

.showcase-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.mini-qr {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-qr img {
  width: 54px;
  height: 54px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
}

.mini-qr span {
  color: var(--muted);
  font-size: 9px;
}

.showcase-watermark {
  position: absolute;
  right: 2%;
  bottom: -80px;
  color: rgba(21, 22, 19, 0.045);
  font-family: Arial, sans-serif;
  font-size: 290px;
  font-weight: 900;
  line-height: 1;
}

.product-principles {
  background: var(--white);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid article {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid article > span {
  color: #999b92;
  font-family: Arial, sans-serif;
  font-size: 9px;
}

.principle-grid h3 {
  margin: 100px 0 14px;
  font-size: 21px;
}

.principle-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

/* Results */

.results-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 0;
  background:
    radial-gradient(circle at 83% 13%, rgba(255, 210, 31, 0.15), transparent 27%),
    var(--ink);
  color: var(--white);
}

.results-orbit {
  position: absolute;
  top: -250px;
  right: -180px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.results-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 95px;
  align-items: end;
}

.results-hero .page-kicker {
  color: var(--yellow);
}

.results-hero h1 {
  margin: 24px 0 0;
  font-size: clamp(54px, 6vw, 83px);
  font-weight: 890;
  letter-spacing: -0.075em;
  line-height: 1.07;
}

.results-hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.results-hero-layout > p {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.9;
}

.result-metric-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 96px;
  border-top: 1px solid var(--line-light);
}

.result-metric-grid article {
  min-height: 315px;
  padding: 28px;
  border-right: 1px solid var(--line-light);
}

.result-metric-grid article:first-child {
  padding-left: 0;
}

.result-metric-grid article:last-child {
  border-right: 0;
}

.result-metric-grid article > span {
  color: rgba(255, 255, 255, 0.32);
  font-family: Arial, sans-serif;
  font-size: 9px;
}

.result-metric-grid strong {
  display: block;
  margin-top: 83px;
  color: var(--yellow);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: clamp(35px, 3.3vw, 50px);
  font-weight: 870;
  letter-spacing: -0.055em;
}

.result-metric-grid h2 {
  margin: 13px 0 0;
  font-size: 12px;
}

.result-metric-grid small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 8px;
}

.annual-comparison-section {
  background: var(--white);
}

.annual-dashboard {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.annual-bars {
  min-height: 520px;
  padding: 38px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(21, 22, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 22, 19, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.chart-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.chart-heading > div {
  display: flex;
  flex-direction: column;
}

.chart-heading span {
  font-size: 13px;
  font-weight: 780;
}

.chart-heading strong,
.chart-heading small {
  margin-top: 4px;
  color: #8a8c83;
  font-size: 8px;
  font-weight: 600;
}

.bar-chart {
  display: grid;
  height: 390px;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: end;
  padding: 35px 32px 0;
  border-bottom: 1px solid var(--line);
}

.bar-chart > div {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}

.bar-chart i {
  width: 100%;
  min-height: 80px;
  border-radius: 16px 16px 0 0;
  background: var(--ink);
}

.bar-chart > div:last-child i {
  background: var(--yellow);
}

.bar-chart strong {
  position: absolute;
  margin-top: 88px;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 18px;
  writing-mode: vertical-rl;
}

.bar-chart > div:last-child strong {
  color: var(--ink);
}

.bar-chart span {
  margin-top: 13px;
  color: var(--muted);
  font-size: 9px;
}

.annual-table {
  padding: 38px;
  background: var(--white);
}

.annual-table > div {
  display: grid;
  min-height: 100px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.annual-table-head {
  min-height: 58px !important;
  color: #92948b;
  font-size: 9px;
  font-weight: 700;
}

.annual-table strong {
  font-size: 11px;
}

.annual-table > div > span {
  color: #6f7169;
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 11px;
}

.data-source-note {
  margin: 18px 0 0;
  color: #999b92;
  font-size: 9px;
  line-height: 1.7;
}

.operation-learning-section {
  background: var(--ink);
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.learning-grid article {
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--line-light);
  color: var(--white);
}

.learning-grid article:last-child {
  border-right: 0;
}

.learning-grid article > span {
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 9px;
}

.learning-grid h3 {
  margin: 117px 0 15px;
  font-size: 21px;
}

.learning-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
  line-height: 1.8;
}

.progress-story-section {
  background: var(--paper-deep);
}

.progress-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  gap: 100px;
  align-items: start;
}

.progress-story-layout > div:first-child {
  position: sticky;
  top: 120px;
}

.progress-story-layout h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 870;
  letter-spacing: -0.06em;
  line-height: 1.15;
}

.progress-story-layout > div:first-child > p {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

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

.progress-story li {
  display: grid;
  min-height: 150px;
  grid-template-columns: 65px 1fr;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.progress-story li > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.progress-story h3 {
  margin: 0;
  font-size: 19px;
}

.progress-story p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
}

/* About */

.about-hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  padding: 190px 0 100px;
  background: var(--ink);
  color: var(--white);
}

.about-hero-mark {
  position: absolute;
  right: -30px;
  bottom: -170px;
  color: rgba(255, 210, 31, 0.07);
  font-size: 650px;
  font-weight: 950;
  line-height: 1;
}

.about-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 100px;
  align-items: end;
}

.about-hero .page-kicker {
  color: var(--yellow);
}

.about-hero h1 {
  margin: 24px 0 0;
  font-size: clamp(55px, 6vw, 83px);
  font-weight: 890;
  letter-spacing: -0.075em;
  line-height: 1.07;
}

.about-hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.about-hero-note {
  padding-bottom: 9px;
}

.about-hero-note > span {
  color: rgba(255, 255, 255, 0.33);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.about-hero-note p {
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.95;
}

.company-story-section {
  background: var(--white);
}

.company-story-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(0, 1.2fr);
  gap: 115px;
  align-items: center;
}

.company-story-brand {
  display: flex;
  min-height: 520px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(21, 22, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 22, 19, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 40px 40px;
}

.large-logo {
  width: 210px;
  height: 210px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 58px;
  background: var(--yellow);
  box-shadow:
    14px 14px 0 var(--ink),
    0 30px 60px rgba(21, 22, 19, 0.18);
  transform: rotate(-3deg);
}

.large-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-story-brand > span {
  margin-top: 48px;
  color: #8a8c83;
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.company-story-copy h2 {
  margin: 0;
  font-size: clamp(39px, 4.3vw, 59px);
  font-weight: 870;
  letter-spacing: -0.06em;
  line-height: 1.15;
}

.company-story-copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

.company-story-copy .text-button {
  margin-top: 29px;
}

.values-section {
  background: var(--paper);
}

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

.values-grid article {
  min-height: 390px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 200ms ease;
}

.values-grid article:hover {
  transform: translateY(-6px);
}

.values-grid article > span {
  color: #989a91;
  font-family: Arial, sans-serif;
  font-size: 9px;
}

.values-grid h3 {
  margin: 185px 0 16px;
  font-size: 26px;
}

.values-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.company-path-section {
  background: var(--paper-deep);
}

.company-path-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: 100px;
  align-items: start;
}

.company-path-layout > div:first-child {
  position: sticky;
  top: 120px;
}

.company-path-layout h2 {
  margin: 0;
  font-size: clamp(39px, 4.3vw, 59px);
  font-weight: 870;
  letter-spacing: -0.06em;
  line-height: 1.15;
}

.company-path-list {
  border-top: 1px solid var(--line);
}

.company-path-list article {
  display: grid;
  min-height: 160px;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.company-path-list article > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 14px;
  background: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.company-path-list h3 {
  margin: 0;
  font-size: 19px;
}

.company-path-list p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

/* Contact */

.contact-hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  padding: 180px 0 92px;
  background:
    radial-gradient(circle at 83% 20%, rgba(255, 255, 255, 0.35), transparent 28%),
    var(--yellow);
}

.contact-hero-orbit {
  position: absolute;
  top: -110px;
  right: -120px;
  width: 670px;
  height: 670px;
  border: 1px solid rgba(21, 22, 19, 0.11);
  border-radius: 50%;
}

.contact-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr minmax(390px, 0.8fr);
  gap: 95px;
  align-items: center;
}

.contact-hero h1 {
  margin: 24px 0 0;
  font-size: clamp(57px, 6.4vw, 88px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1.06;
}

.contact-hero-layout > div:first-child > p {
  max-width: 660px;
  margin: 27px 0 0;
  color: rgba(21, 22, 19, 0.65);
  font-size: 15px;
  line-height: 1.9;
}

.contact-primary-card {
  padding: 35px;
  border: 1px solid rgba(21, 22, 19, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 28px 70px rgba(89, 69, 0, 0.13);
  backdrop-filter: blur(15px);
}

.contact-primary-card > span {
  color: rgba(21, 22, 19, 0.5);
  font-size: 9px;
  font-weight: 760;
}

.contact-primary-card > a {
  display: block;
  margin-top: 18px;
  font-family: Arial, sans-serif;
  font-size: clamp(31px, 3.4vw, 46px);
  font-weight: 880;
  letter-spacing: -0.04em;
}

.contact-primary-card > p {
  margin: 8px 0 0;
  color: rgba(21, 22, 19, 0.5);
  font-size: 9px;
}

.contact-primary-card > div {
  display: flex;
  gap: 8px;
  margin-top: 47px;
  padding-top: 22px;
  border-top: 1px solid rgba(21, 22, 19, 0.12);
}

.contact-primary-card > div span {
  padding: 8px 11px;
  border: 1px solid rgba(21, 22, 19, 0.11);
  border-radius: 999px;
  font-size: 8px;
}

.cooperation-types-section {
  background: var(--white);
}

.cooperation-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.cooperation-type-grid article {
  min-height: 310px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.cooperation-type-grid article:hover {
  background: #fff9d9;
  transform: translateY(-5px);
}

.cooperation-type-grid article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cooperation-type-grid article > div span,
.cooperation-type-grid article > div small {
  color: #8b8d84;
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
}

.cooperation-type-grid h3 {
  margin: 72px 0 15px;
  font-size: 25px;
}

.cooperation-type-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.cooperation-type-grid article > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 31px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(21, 22, 19, 0.28);
  font-size: 10px;
  font-weight: 750;
}

.contact-wechat-section {
  background: var(--ink);
  color: var(--white);
}

.contact-wechat-layout {
  display: grid;
  grid-template-columns: 1fr minmax(440px, 0.78fr);
  gap: 95px;
  align-items: center;
}

.contact-wechat-layout h2 {
  margin: 0;
  font-size: clamp(40px, 4.7vw, 62px);
  font-weight: 870;
  letter-spacing: -0.06em;
  line-height: 1.14;
}

.contact-wechat-layout > div:first-child > p {
  max-width: 620px;
  margin: 26px 0 31px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 14px;
  line-height: 1.9;
}

.qr-directory-section {
  background: var(--paper-deep);
}

.qr-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.qr-directory-grid article {
  padding: 17px 17px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.qr-directory-grid article > div {
  padding: 12px;
  border-radius: 15px;
  background: #f6f5ef;
}

.qr-directory-link {
  display: block;
}

.qr-directory-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
}

.qr-directory-link img {
  image-rendering: pixelated;
}

.qr-directory-grid article > span {
  display: block;
  margin-top: 18px;
  color: #8a8c83;
  font-size: 8px;
}

.qr-directory-grid h3 {
  margin: 7px 0 0;
  font-size: 16px;
}

@media (max-width: 900px) {
  .product-hub-hero-layout,
  .product-entry-layout,
  .product-showcase-layout,
  .results-hero-layout,
  .annual-dashboard,
  .progress-story-layout,
  .about-hero-layout,
  .company-story-layout,
  .company-path-layout,
  .contact-hero-layout,
  .contact-wechat-layout {
    grid-template-columns: 1fr;
  }

  .product-hub-devices {
    min-height: 580px;
  }

  .product-showcase-item:nth-child(even) .showcase-devices {
    order: 0;
  }

  .product-showcase-layout {
    gap: 45px;
  }

  .showcase-devices {
    min-height: 540px;
  }

  .principle-grid,
  .result-metric-grid,
  .learning-grid,
  .qr-directory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .principle-grid article:nth-child(2),
  .result-metric-grid article:nth-child(2),
  .learning-grid article:nth-child(2) {
    border-right: 0;
  }

  .principle-grid article:nth-child(-n + 2),
  .result-metric-grid article:nth-child(-n + 2),
  .learning-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .result-metric-grid,
  .learning-grid {
    border-bottom: 1px solid var(--line-light);
  }

  .result-metric-grid article:nth-child(-n + 2),
  .learning-grid article:nth-child(-n + 2) {
    border-bottom-color: var(--line-light);
  }

  .result-metric-grid article:first-child {
    padding-left: 28px;
  }

  .annual-bars {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .progress-story-layout > div:first-child,
  .company-path-layout > div:first-child {
    position: static;
  }

  .company-story-brand {
    min-height: 460px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-grid article {
    min-height: 310px;
  }

  .values-grid h3 {
    margin-top: 115px;
  }
}

@media (max-width: 620px) {
  .product-hub-hero {
    min-height: auto;
    padding-top: 130px;
  }

  .product-hub-hero h1,
  .results-hero h1,
  .about-hero h1,
  .contact-hero h1 {
    font-size: 47px;
  }

  .product-hub-devices {
    min-height: 450px;
  }

  .hub-phone {
    top: 45px;
    width: 165px;
    height: 360px;
    border-width: 5px;
    border-radius: 23px;
  }

  .hub-phone-1 {
    left: -25px;
  }

  .hub-phone-3 {
    right: -25px;
  }

  .entry-chain {
    align-items: flex-start;
    flex-direction: column;
  }

  .entry-chain i {
    padding-left: 19px;
    transform: rotate(90deg);
  }

  .product-showcase-item {
    padding: 78px 0;
  }

  .showcase-devices {
    min-height: 460px;
  }

  .showcase-phone {
    width: 190px;
    height: 415px;
    border-width: 5px;
    border-radius: 24px;
  }

  .showcase-phone-front {
    left: 46%;
  }

  .showcase-phone-back {
    left: -5px;
  }

  .showcase-benefits {
    top: 125px;
    left: -20px;
    width: 220px;
  }

  .showcase-index {
    margin-bottom: 40px;
  }

  .showcase-copy h2 {
    font-size: 43px;
  }

  .showcase-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .principle-grid,
  .result-metric-grid,
  .learning-grid,
  .qr-directory-grid,
  .cooperation-type-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid article,
  .result-metric-grid article,
  .learning-grid article {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .result-metric-grid article,
  .learning-grid article {
    border-bottom-color: var(--line-light);
  }

  .principle-grid h3,
  .learning-grid h3 {
    margin-top: 70px;
  }

  .results-hero,
  .about-hero,
  .contact-hero {
    min-height: auto;
    padding: 140px 0 78px;
  }

  .result-metric-grid {
    margin-top: 70px;
  }

  .result-metric-grid article {
    min-height: 220px;
  }

  .result-metric-grid strong {
    margin-top: 55px;
  }

  .annual-dashboard {
    border-radius: 26px;
  }

  .annual-bars,
  .annual-table {
    padding: 24px 18px;
  }

  .bar-chart {
    gap: 12px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .annual-table > div {
    min-height: 88px;
    gap: 6px;
  }

  .annual-table > div > span,
  .annual-table strong {
    font-size: 9px;
  }

  .progress-story-layout,
  .company-path-layout {
    gap: 45px;
  }

  .company-story-brand {
    min-height: 390px;
  }

  .large-logo {
    width: 160px;
    height: 160px;
    border-radius: 45px;
  }

  .values-grid article {
    min-height: 270px;
  }

  .values-grid h3 {
    margin-top: 90px;
  }

  .contact-primary-card {
    padding: 26px;
  }

  .contact-primary-card > a {
    font-size: 31px;
  }

  .contact-wechat-layout h2,
  .company-story-copy h2,
  .company-path-layout h2,
  .progress-story-layout h2 {
    font-size: 38px;
  }
}

/* Member accounts and customer reviews */

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.header-account-login,
.header-user-menu > summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 13px 4px 5px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 760;
  list-style: none;
}

.site-header-dark .header-account-login,
.site-header-dark .header-user-menu > summary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.header-account-login img,
.header-user-menu > summary img {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  object-fit: cover;
}

.header-user-menu {
  position: relative;
}

.header-user-menu > summary::-webkit-details-marker {
  display: none;
}

.header-user-menu > summary span {
  max-width: 86px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-user-menu > div {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: 238px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  padding: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 55px rgba(21, 22, 19, 0.18);
}

.header-user-menu > div > a,
.header-user-menu form button {
  display: flex;
  min-height: 43px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 12px;
  padding: 0 12px;
  background: transparent;
  color: #5f6159;
  cursor: pointer;
  font-size: 10px;
  font-weight: 730;
  text-align: left;
}

.header-user-menu > div > a:first-child {
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}

.header-user-menu > div > a strong {
  color: var(--ink);
  font-size: 12px;
}

.header-user-menu > div > a small {
  margin-top: 3px;
  color: #8d8f87;
  font-size: 8px;
}

.header-user-menu > div > a:hover,
.header-user-menu form button:hover {
  background: var(--paper);
  color: var(--ink);
}

.homepage-greeting {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(21, 22, 19, 0.1);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.52);
  color: #686a62;
  font-size: 10px;
  font-weight: 720;
}

.homepage-greeting span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(54, 199, 131, 0.14);
}

.site-alert {
  margin-bottom: 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 14px 17px;
  font-size: 12px;
  font-weight: 680;
}

.site-alert.is-success {
  border-color: rgba(27, 146, 85, 0.2);
  background: #eaf9f1;
  color: #147a49;
}

.site-alert.is-error {
  border-color: rgba(207, 45, 61, 0.2);
  background: #fff0f1;
  color: #a62432;
}

.account-auth-page {
  min-height: 100vh;
  padding-top: var(--header-height);
  background: var(--paper);
}

.account-auth-layout {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  grid-template-columns: minmax(0, 1.1fr) minmax(430px, 0.9fr);
}

.account-auth-intro {
  display: flex;
  min-height: 720px;
  justify-content: space-between;
  flex-direction: column;
  padding: clamp(70px, 8vw, 125px) clamp(40px, 8vw, 125px) 70px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 210, 31, 0.32), transparent 32%),
    var(--ink);
  color: var(--white);
}

.account-auth-intro .page-kicker {
  color: var(--yellow);
}

.account-auth-intro h1 {
  margin: 25px 0 27px;
  font-size: clamp(52px, 6.3vw, 92px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1.05;
}

.account-auth-intro h1 em {
  color: var(--yellow);
  font-style: normal;
}

.account-auth-intro p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.9;
}

.account-auth-trust {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.account-auth-trust span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 700;
}

.account-auth-card {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 56px clamp(35px, 6vw, 90px);
  background: #faf9f5;
}

.account-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}

.account-auth-tabs a {
  position: relative;
  padding: 15px 0;
  color: #8a8c83;
  font-size: 12px;
  font-weight: 760;
  text-align: center;
}

.account-auth-tabs a::after {
  position: absolute;
  right: 20%;
  bottom: -1px;
  left: 20%;
  height: 2px;
  background: var(--ink);
  content: "";
  opacity: 0;
}

.account-auth-tabs a.is-active {
  color: var(--ink);
}

.account-auth-tabs a.is-active::after {
  opacity: 1;
}

.auth-card-heading > span,
.account-panel-title > span {
  color: #95978e;
  font: 800 9px/1 Arial, sans-serif;
  letter-spacing: 0.17em;
}

.auth-card-heading h2,
.account-panel-title h2 {
  margin: 10px 0 7px;
  font-size: 30px;
  font-weight: 870;
  letter-spacing: -0.045em;
}

.auth-card-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.login-method-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 25px;
  border-radius: 13px;
  padding: 5px;
  background: #ecebe5;
}

.login-method-switch button {
  min-height: 38px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #7d7f77;
  cursor: pointer;
  font-size: 10px;
  font-weight: 740;
}

.login-method-switch button.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(21, 22, 19, 0.08);
}

.account-form,
.account-profile-form {
  display: grid;
  gap: 18px;
  margin-top: 27px;
}

.account-form[hidden] {
  display: none;
}

.account-form > label,
.account-profile-form > label {
  display: grid;
  gap: 8px;
  color: #5e6058;
  font-size: 10px;
  font-weight: 760;
}

.account-form input,
.account-profile-form input {
  width: 100%;
  height: 50px;
  border: 1px solid #d9d7cd;
  border-radius: 12px;
  outline: 0;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
}

.account-form input:focus,
.account-profile-form input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255, 210, 31, 0.38);
}

.code-input-row {
  display: grid;
  grid-template-columns: 1fr 118px;
  gap: 8px;
}

.code-input-row button {
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 9px;
  font-weight: 780;
}

.code-input-row button:disabled {
  border-color: var(--line);
  color: #96988f;
  cursor: wait;
}

.code-feedback {
  min-height: 16px;
  margin: -9px 0 0;
  color: #198252;
  font-size: 9px;
}

.code-feedback.is-error {
  color: #b12837;
}

.account-submit {
  width: 100%;
  justify-content: space-between;
  margin-top: 2px;
}

.account-form-note {
  color: #96988f;
  font-size: 9px;
  line-height: 1.65;
}

.account-center-page {
  min-height: 100vh;
  background: var(--paper);
}

.account-center-hero {
  padding: 165px 0 78px;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 210, 31, 0.38), transparent 30%),
    var(--paper);
}

.account-center-hero-layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.account-center-hero h1 {
  margin: 20px 0 15px;
  font-size: clamp(45px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.07;
}

.account-center-hero p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.account-center-content {
  padding-top: 75px;
}

.account-center-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.account-profile-card {
  border: 1px solid var(--line);
  border-radius: 27px;
  padding: 30px;
  background: var(--white);
}

.avatar-editor {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 6px 17px;
  align-items: center;
}

.avatar-editor img {
  grid-row: 1 / 3;
  width: 92px;
  height: 92px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--yellow);
  object-fit: cover;
}

.avatar-editor label {
  display: inline-flex;
  width: max-content;
  min-height: 37px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 760;
}

.avatar-editor input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.avatar-editor small {
  color: #96988f;
  font-size: 8px;
}

.account-profile-form .button {
  width: max-content;
}

.account-review-history {
  margin-top: 90px;
}

.account-review-list {
  display: grid;
  gap: 13px;
}

.account-review-list article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: var(--white);
}

.account-review-list article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.account-review-list article > div small {
  color: #95978e;
  font-size: 9px;
}

.account-review-list article p {
  margin: 15px 0;
  color: #55574f;
  font-size: 12px;
  line-height: 1.8;
}

.review-status {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 9px;
  background: #ecebe5;
  color: #696b63;
  font-size: 8px;
  font-weight: 760;
}

.review-status.is-published {
  background: #e8f8f0;
  color: #167947;
}

.review-status.is-rejected {
  background: #fff0f1;
  color: #a62432;
}

.account-empty,
.reviews-empty {
  display: grid;
  min-height: 240px;
  place-items: center;
  border: 1px dashed rgba(21, 22, 19, 0.2);
  border-radius: 23px;
  padding: 35px;
  text-align: center;
}

.account-empty p,
.reviews-empty p {
  margin: -35px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.account-empty a {
  margin-top: -35px;
  font-size: 10px;
  font-weight: 760;
}

.reviews-page {
  background: var(--paper);
}

.reviews-hero {
  padding: 175px 0 90px;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 210, 31, 0.25), transparent 31%),
    var(--ink);
  color: var(--white);
}

.reviews-hero-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 80px;
  align-items: end;
}

.reviews-hero .page-kicker {
  color: var(--yellow);
}

.reviews-hero h1 {
  margin: 23px 0 24px;
  font-size: clamp(55px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1.04;
}

.reviews-hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.reviews-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.9;
}

.reviews-summary {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.reviews-summary > span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.reviews-summary > strong {
  margin: 29px 0 10px;
  color: var(--yellow);
  font: 900 78px/0.9 Arial, sans-serif;
  letter-spacing: -0.07em;
}

.reviews-summary small {
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
}

.review-stars {
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.review-stars i {
  color: #deddd6;
  font-style: normal;
}

.review-compose-section {
  padding-top: 85px;
  padding-bottom: 90px;
}

.review-compose-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(29, 30, 25, 0.08);
}

.review-compose-intro {
  padding: clamp(38px, 5vw, 68px);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 210, 31, 0.22), transparent 35%),
    var(--paper-deep);
}

.review-compose-intro h2 {
  margin: 18px 0 20px;
  font-size: clamp(35px, 4vw, 55px);
  font-weight: 890;
  letter-spacing: -0.055em;
  line-height: 1.18;
}

.review-compose-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

.review-rules {
  display: grid;
  gap: 11px;
  margin-top: 45px;
}

.review-rules span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #62645c;
  font-size: 10px;
  font-weight: 710;
}

.review-rules span::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  content: "✓";
  font-size: 9px;
}

.review-form,
.review-login-required {
  padding: clamp(36px, 5vw, 62px);
}

.review-form {
  display: grid;
  gap: 22px;
}

.review-author-preview {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 13px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.review-author-preview img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  object-fit: cover;
}

.review-author-preview div {
  display: flex;
  flex-direction: column;
}

.review-author-preview strong {
  font-size: 12px;
}

.review-author-preview small {
  margin-top: 4px;
  color: #8f9188;
  font-size: 8px;
}

.review-author-preview a {
  color: #777970;
  font-size: 9px;
  font-weight: 700;
}

.star-rating {
  margin: 0;
  border: 0;
  padding: 0;
}

.star-rating legend,
.review-text-field {
  color: #5c5e56;
  font-size: 10px;
  font-weight: 750;
}

.star-rating > div {
  display: flex;
  width: max-content;
  flex-direction: row-reverse;
  margin-top: 9px;
}

.star-rating input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.star-rating label {
  color: #dddcd5;
  cursor: pointer;
  font: 30px/1 Arial, sans-serif;
  transition: color 140ms ease, transform 140ms ease;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--yellow);
}

.star-rating label:hover {
  transform: translateY(-2px);
}

.review-text-field {
  position: relative;
  display: grid;
  gap: 8px;
}

.review-text-field textarea {
  min-height: 145px;
  resize: vertical;
  border: 1px solid #d9d7cd;
  border-radius: 15px;
  outline: 0;
  padding: 14px;
  background: #fbfaf7;
  color: var(--ink);
  font: 12px/1.8 inherit;
}

.review-text-field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255, 210, 31, 0.34);
}

.review-text-field small {
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: #a0a199;
  font-size: 8px;
}

.review-image-upload {
  position: relative;
  display: flex;
  min-height: 90px;
  align-items: center;
  gap: 11px;
  border: 1px dashed rgba(21, 22, 19, 0.22);
  border-radius: 15px;
  padding: 15px;
  cursor: pointer;
}

.review-image-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.review-image-upload > span {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--paper-deep);
  font-size: 20px;
}

.review-image-upload strong,
.review-image-upload small {
  display: block;
}

.review-image-upload strong {
  font-size: 10px;
}

.review-image-upload small {
  margin-top: 5px;
  color: #979990;
  font-size: 8px;
}

.review-image-preview {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
}

.review-image-preview:empty {
  display: none;
}

.review-image-preview img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
}

.review-login-required {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.review-login-required > img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
}

.review-login-required > span {
  margin-top: 25px;
  color: #96988f;
  font: 800 8px/1 Arial, sans-serif;
  letter-spacing: 0.17em;
}

.review-login-required h3 {
  margin: 13px 0 10px;
  font-size: 28px;
}

.review-login-required p {
  max-width: 390px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.review-list-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.review-filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.review-filters a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: #73756d;
  font-size: 9px;
  font-weight: 740;
}

.review-filters a.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.review-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: #fbfaf7;
}

.review-card.is-featured {
  border-color: rgba(255, 210, 31, 0.75);
  box-shadow: inset 0 4px 0 var(--yellow);
}

.review-card-head {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 11px;
  align-items: center;
}

.review-card-head > img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  object-fit: cover;
}

.review-card-head > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.review-card-head strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card-head span,
.review-card-head time {
  color: #93958d;
  font-size: 8px;
}

.review-card-head span {
  margin-top: 4px;
}

.review-card > .review-stars {
  margin-top: 19px;
}

.review-card > p {
  flex: 1;
  margin: 14px 0 20px;
  color: #55574f;
  font-size: 12px;
  line-height: 1.85;
}

.review-card-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.review-card-images a {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 9px;
  background: var(--paper-deep);
}

.review-card-images img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.review-card-images a:hover img {
  transform: scale(1.04);
}

.reviews-empty {
  grid-column: 1 / -1;
}

@media (max-width: 1220px) {
  .primary-navigation {
    gap: 16px;
  }

  .header-contact {
    display: none;
  }

  .review-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .header-actions {
    margin-left: auto;
  }

  .header-account-login span,
  .header-user-menu > summary span {
    display: none;
  }

  .header-account-login,
  .header-user-menu > summary {
    min-height: 42px;
    padding: 3px;
  }

  .header-account-login img,
  .header-user-menu > summary img {
    width: 34px;
    height: 34px;
  }

  .account-auth-layout {
    grid-template-columns: 1fr;
  }

  .account-auth-intro {
    min-height: 570px;
  }

  .account-center-hero-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-hero-layout,
  .review-compose-card {
    grid-template-columns: 1fr;
  }

  .reviews-summary {
    min-height: 230px;
  }

  .review-compose-intro {
    min-height: 410px;
  }
}

@media (max-width: 680px) {
  .brand-wordmark {
    display: none;
  }

  .header-layout {
    gap: 10px;
  }

  .account-auth-intro {
    min-height: 470px;
    padding: 56px 22px 35px;
  }

  .account-auth-intro h1 {
    font-size: 47px;
  }

  .account-auth-card {
    padding: 42px 20px 60px;
  }

  .account-center-hero {
    padding: 130px 0 60px;
  }

  .account-center-grid,
  .review-card-grid {
    grid-template-columns: 1fr;
  }

  .account-profile-card {
    padding: 23px 18px;
  }

  .reviews-hero {
    padding: 135px 0 65px;
  }

  .reviews-hero h1 {
    font-size: 49px;
  }

  .review-compose-section {
    padding-top: 45px;
  }

  .review-compose-card {
    border-radius: 24px;
  }

  .review-compose-intro,
  .review-form,
  .review-login-required {
    padding: 30px 21px;
  }

  .review-compose-intro {
    min-height: 360px;
  }

  .review-author-preview {
    grid-template-columns: 47px 1fr;
  }

  .review-author-preview > a {
    grid-column: 2;
  }

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

  .review-list-section .section-title {
    align-items: flex-start;
  }

  .review-card {
    min-height: auto;
    padding: 20px;
  }
}

/* Account interface refinement · 2026-07 */

.header-actions {
  gap: 9px;
}

.header-account-login,
.header-user-menu > summary {
  display: grid;
  width: 48px;
  min-width: 48px;
  min-height: 48px;
  grid-template-columns: 38px;
  gap: 0;
  align-items: center;
  border: 1px solid rgba(21, 22, 19, 0.12);
  border-radius: 16px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(21, 22, 19, 0.045);
  cursor: pointer;
  list-style: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.header-account-login:hover,
.header-user-menu > summary:hover,
.header-user-menu[open] > summary {
  border-color: rgba(21, 22, 19, 0.24);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(21, 22, 19, 0.1);
  transform: translateY(-1px);
}

.site-header-dark .header-account-login,
.site-header-dark .header-user-menu > summary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: none;
}

.site-header-dark .header-account-login:hover,
.site-header-dark .header-user-menu > summary:hover,
.site-header-dark .header-user-menu[open] > summary {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.14);
}

.header-avatar {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
}

.header-avatar::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.header-account-login .header-avatar::after {
  display: none;
}

.site-header-dark .header-avatar::after {
  border-color: var(--ink);
}

.header-account-login .header-avatar img,
.header-user-menu > summary .header-avatar img {
  display: block;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(21, 22, 19, 0.09);
  border-radius: 12px;
  background: var(--yellow);
  object-fit: cover;
}

.header-account-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: -1px !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  padding: 0 !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.header-account-copy small {
  color: #999b92;
  font: 760 7px/1.1 Arial, sans-serif;
  letter-spacing: 0.08em;
}

.header-account-copy strong {
  overflow: hidden;
  color: currentColor;
  font-size: 10px;
  font-weight: 790;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header-dark .header-account-copy small {
  color: rgba(255, 255, 255, 0.42);
}

.header-account-login > i {
  color: #8c8e85;
  font: normal 13px/1 Arial, sans-serif;
  transition: transform 180ms ease;
}

.header-account-login:hover > i {
  transform: translateX(2px);
}

.header-user-menu > summary > i {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.45;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.header-user-menu[open] > summary > i {
  transform: translateY(2px) rotate(225deg);
}

.header-user-menu > .header-user-popover {
  top: calc(100% + 13px);
  width: 306px;
  overflow: visible;
  border: 1px solid rgba(21, 22, 19, 0.1);
  border-radius: 22px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 26px 70px rgba(21, 22, 19, 0.18);
  backdrop-filter: blur(20px);
}

.header-user-popover::before {
  position: absolute;
  top: -6px;
  right: 22px;
  width: 11px;
  height: 11px;
  border-top: 1px solid rgba(21, 22, 19, 0.1);
  border-left: 1px solid rgba(21, 22, 19, 0.1);
  background: var(--white);
  content: "";
  transform: rotate(45deg);
}

.header-user-profile {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  margin-bottom: 7px;
  border-radius: 15px;
  padding: 13px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 210, 31, 0.3), transparent 38%),
    var(--paper);
}

.header-user-profile > img {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(21, 22, 19, 0.1);
  border-radius: 15px;
  background: var(--yellow);
  object-fit: cover;
}

.header-user-profile > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.header-user-profile small {
  color: #92948b;
  font-size: 8px;
  font-weight: 720;
}

.header-user-profile strong,
.header-user-profile em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-user-profile strong {
  color: var(--ink);
  font-size: 13px;
  font-style: normal;
}

.header-user-profile em {
  color: #8b8d85;
  font-size: 8px;
  font-style: normal;
}

.header-user-menu > .header-user-popover > a {
  display: grid;
  min-height: 57px;
  grid-template-columns: 1fr auto;
  gap: 2px 14px;
  align-content: center;
  border-radius: 13px;
  padding: 9px 13px;
}

.header-user-menu > .header-user-popover > a > span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 790;
}

.header-user-menu > .header-user-popover > a > small {
  color: #92948b;
  font-size: 8px;
}

.header-user-menu > .header-user-popover > a > b {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: #8a8c83;
  font: 500 14px/1 Arial, sans-serif;
  transition: transform 180ms ease;
}

.header-user-menu > .header-user-popover > a:hover > b {
  transform: translateX(3px);
}

.header-user-menu > .header-user-popover form {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  padding-top: 7px;
}

.header-user-menu > .header-user-popover form button {
  min-height: 40px;
  color: #a4303d;
}

.account-auth-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: calc(var(--header-height) + 42px) 0 74px;
  background:
    radial-gradient(circle at 87% 14%, rgba(255, 210, 31, 0.19), transparent 26%),
    var(--paper);
}

.account-auth-grid {
  position: absolute;
  inset: var(--header-height) 0 0;
  background-image:
    linear-gradient(rgba(21, 22, 19, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 22, 19, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
  pointer-events: none;
}

.account-auth-shell {
  position: relative;
  z-index: 1;
}

.account-auth-layout {
  display: grid;
  min-height: 720px;
  overflow: hidden;
  grid-template-columns: minmax(390px, 0.86fr) minmax(520px, 1.14fr);
  border: 1px solid rgba(21, 22, 19, 0.11);
  border-radius: 36px;
  background: var(--white);
  box-shadow: 0 36px 110px rgba(21, 22, 19, 0.13);
}

.account-auth-intro {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  overflow: hidden;
  justify-content: space-between;
  flex-direction: column;
  padding: 46px 48px 43px;
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 210, 31, 0.28), transparent 28%),
    #171813;
  color: var(--white);
}

.account-auth-brand-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.account-auth-brand-row > span {
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: var(--yellow);
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.15);
  transform: rotate(-2deg);
}

.account-auth-brand-row img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-auth-brand-row > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.account-auth-brand-row strong {
  font-size: 13px;
  font-weight: 820;
}

.account-auth-brand-row small {
  color: rgba(255, 255, 255, 0.4);
  font: 780 7px/1 Arial, sans-serif;
  letter-spacing: 0.18em;
}

.account-auth-message {
  position: relative;
  z-index: 2;
  margin: auto 0;
  padding: 62px 0 54px;
}

.account-time-greeting {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.63);
  font-size: 9px;
  font-weight: 690;
  backdrop-filter: blur(12px);
}

.account-time-greeting i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(54, 199, 131, 0.13);
}

.account-auth-intro h1 {
  max-width: 510px;
  margin: 26px 0 22px;
  font-size: clamp(43px, 4.15vw, 62px);
  font-weight: 890;
  letter-spacing: -0.066em;
  line-height: 1.1;
}

.account-auth-intro h1 em {
  color: var(--yellow);
  font-style: normal;
}

.account-auth-intro p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.85;
}

.account-auth-trust {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 7px;
}

.account-auth-trust span {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  font-weight: 680;
}

.account-auth-trust b {
  color: var(--yellow);
  font: 780 8px/1 Arial, sans-serif;
}

.account-auth-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.account-auth-orbit-one {
  top: -120px;
  right: -210px;
  width: 520px;
  height: 520px;
}

.account-auth-orbit-two {
  right: -80px;
  bottom: -230px;
  width: 420px;
  height: 420px;
  border-color: rgba(255, 210, 31, 0.11);
}

.account-auth-card {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  padding: 40px clamp(42px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
}

.account-auth-card-inner {
  width: min(100%, 470px);
  margin-inline: auto;
}

.account-back-home {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  margin: 0 0 20px auto;
  color: #85877e;
  font-size: 9px;
  font-weight: 720;
}

.account-back-home span {
  font: 500 13px/1 Arial, sans-serif;
}

.account-back-home:hover {
  color: var(--ink);
}

.account-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin: 0 0 34px;
  border: 0;
  border-radius: 15px;
  padding: 5px;
  background: #efeee8;
}

.account-auth-tabs a {
  display: flex;
  min-height: 49px;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border-radius: 11px;
  padding: 7px 12px;
  color: #85877e;
  text-align: center;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.account-auth-tabs a::after {
  display: none;
}

.account-auth-tabs a > span {
  font-size: 11px;
  font-weight: 790;
}

.account-auth-tabs a > small {
  font-size: 8px;
  font-weight: 650;
  opacity: 0.68;
}

.account-auth-tabs a.is-active {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(21, 22, 19, 0.16);
}

.auth-card-heading > span {
  color: #999b92;
}

.auth-card-heading h2 {
  margin: 12px 0 8px;
  font-size: 34px;
  letter-spacing: -0.055em;
}

.auth-card-heading p {
  color: #7e8078;
  font-size: 10px;
  line-height: 1.7;
}

.login-method-switch {
  gap: 5px;
  margin-top: 23px;
  border: 1px solid rgba(21, 22, 19, 0.06);
  border-radius: 14px;
  padding: 4px;
  background: #f0efe9;
}

.login-method-switch button {
  min-height: 40px;
  border-radius: 10px;
}

.account-form {
  gap: 15px;
  margin-top: 22px;
}

.account-form > label,
.account-form-two > label {
  display: grid;
  gap: 8px;
}

.account-form > label > span:first-child,
.account-form-two > label > span:first-child {
  color: #5b5d55;
  font-size: 9px;
  font-weight: 780;
}

.account-form input {
  height: 52px;
  border-color: #dcdad0;
  border-radius: 14px;
  padding: 0 15px;
  background: #fbfaf6;
  font-size: 12px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.account-form input:hover {
  border-color: #c8c6bb;
  background: var(--white);
}

.account-form input:focus {
  border-color: rgba(21, 22, 19, 0.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 210, 31, 0.22);
}

.account-form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.code-input-row {
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 8px;
}

.code-input-row button {
  border-color: rgba(21, 22, 19, 0.22);
  border-radius: 14px;
  background: var(--white);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.code-input-row button:hover:not(:disabled) {
  border-color: var(--ink);
  background: var(--yellow);
}

.code-feedback {
  margin: -7px 0 -3px;
}

.account-submit {
  min-height: 53px;
  border-radius: 14px;
  padding-inline: 19px;
}

.account-form-note {
  color: #999b92;
  line-height: 1.7;
}

@media (max-width: 1120px) {
  .header-account-login,
  .header-user-menu > summary {
    min-width: 48px;
  }

  .account-auth-layout {
    grid-template-columns: minmax(350px, 0.8fr) minmax(480px, 1.2fr);
  }

  .account-auth-intro {
    padding-inline: 38px;
  }

  .account-auth-card {
    padding-inline: 44px;
  }
}

@media (max-width: 900px) {
  .header-account-login,
  .header-user-menu > summary {
    display: grid;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    grid-template-columns: 36px;
    border-radius: 14px;
    padding: 3px;
  }

  .header-account-login .header-avatar,
  .header-user-menu > summary .header-avatar {
    display: block;
    width: 36px;
    height: 36px;
  }

  .header-account-login .header-avatar img,
  .header-user-menu > summary .header-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .header-account-copy,
  .header-account-login > i,
  .header-user-menu > summary > i {
    display: none;
  }

  .header-user-menu > .header-user-popover {
    right: -53px;
    width: min(306px, calc(100vw - 24px));
  }

  .account-auth-page {
    padding: calc(var(--header-height) + 26px) 0 55px;
  }

  .account-auth-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .account-auth-intro {
    min-height: 300px;
    padding: 32px 36px 30px;
  }

  .account-auth-message {
    margin: 0;
    padding: 42px 0 34px;
  }

  .account-auth-intro h1 {
    max-width: 620px;
    margin-block: 20px 16px;
    font-size: clamp(42px, 8vw, 58px);
  }

  .account-auth-trust {
    grid-template-columns: repeat(3, 1fr);
  }

  .account-auth-card {
    padding: 42px 38px 50px;
  }
}

@media (max-width: 680px) {
  .account-auth-page {
    padding: calc(var(--header-height) + 16px) 0 36px;
  }

  .account-auth-shell {
    width: calc(100% - 24px);
  }

  .account-auth-layout {
    border-radius: 22px;
  }

  .account-auth-intro {
    min-height: 0;
    padding: 24px 20px 23px;
  }

  .account-auth-brand-row > span {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .account-auth-message {
    padding: 34px 0 24px;
  }

  .account-time-greeting {
    padding: 7px 9px;
    font-size: 8px;
  }

  .account-auth-intro h1 {
    margin: 17px 0 13px;
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: 1.12;
  }

  .account-auth-intro p {
    max-width: 95%;
    font-size: 10px;
  }

  .account-auth-trust {
    display: none;
  }

  .account-auth-card {
    padding: 27px 18px 34px;
  }

  .account-back-home {
    margin-bottom: 17px;
  }

  .account-auth-tabs {
    margin-bottom: 28px;
  }

  .auth-card-heading h2 {
    font-size: 30px;
  }

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

  .code-input-row {
    grid-template-columns: minmax(0, 1fr) 104px;
  }

  .account-form input {
    height: 50px;
  }
}

/* Login guidance and password recovery · 2026-07 */

.header-account-login {
  display: inline-flex;
  width: auto;
  min-width: 72px;
  min-height: 44px;
  grid-template-columns: none;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--ink);
  color: var(--white);
  box-shadow: none;
  font-size: 11px;
  font-weight: 790;
}

.header-account-login:hover {
  border-color: transparent;
  background: #272820;
  color: var(--white);
  box-shadow: 0 12px 26px rgba(21, 22, 19, 0.16);
}

.site-header-dark .header-account-login {
  border: 0;
  background: var(--yellow);
  color: var(--ink);
}

.site-header-dark .header-account-login:hover {
  border-color: transparent;
  background: #ffe05c;
  color: var(--ink);
}

.header-account-login > span {
  display: inline;
}

.header-account-login > i {
  color: currentColor;
  font-size: 15px;
  opacity: 0.76;
}

.account-field-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-field-heading > a {
  color: #76786f;
  font-size: 9px;
  font-weight: 720;
}

.account-field-heading > a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.login-help-dialog {
  width: min(520px, calc(100% - 32px));
  max-width: none;
  overflow: visible;
  border: 0;
  border-radius: 26px;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.login-help-dialog::backdrop {
  background: rgba(12, 13, 10, 0.68);
  backdrop-filter: blur(8px);
}

.login-help-dialog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 26px;
  padding: 34px;
  background:
    radial-gradient(circle at 93% 7%, rgba(255, 210, 31, 0.35), transparent 28%),
    var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.login-help-kicker {
  color: #8c8e85;
  font: 800 9px/1 Arial, sans-serif;
  letter-spacing: 0.16em;
}

.login-help-dialog h2 {
  max-width: 400px;
  margin: 13px 0 11px;
  font-size: 28px;
  font-weight: 880;
  letter-spacing: -0.05em;
  line-height: 1.22;
}

.login-help-dialog p {
  margin: 0;
  color: #73756d;
  font-size: 12px;
  line-height: 1.8;
}

.login-help-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 25px;
}

.login-help-actions .button {
  min-height: 50px;
  border-radius: 14px;
  padding-inline: 16px;
  font-size: 11px;
}

.button-outline {
  border: 1px solid rgba(21, 22, 19, 0.18);
  background: #f5f4ee;
  color: var(--ink);
}

.button-outline:hover {
  border-color: rgba(21, 22, 19, 0.4);
  background: var(--white);
}

.login-help-dialog-card > form {
  margin-top: 17px;
  text-align: center;
}

.login-help-dialog-card > form button {
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 4px 0;
  background: transparent;
  color: #8b8d84;
  cursor: pointer;
  font-size: 9px;
}

.login-help-dialog-card > form button:hover {
  border-bottom-color: currentColor;
  color: var(--ink);
}

.account-password-layout {
  min-height: 650px;
}

.account-password-layout .account-auth-card-inner {
  width: min(100%, 450px);
}

.account-email-sent,
.account-reset-invalid {
  display: grid;
  justify-items: start;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 25px;
  background: #f8f7f2;
}

.account-email-sent > span,
.account-reset-invalid > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 13px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 18px;
  font-weight: 860;
}

.account-email-sent strong {
  font-size: 17px;
}

.account-email-sent p {
  margin: 9px 0 20px;
  color: #73756d;
  font-size: 10px;
  line-height: 1.8;
}

.account-email-sent .button,
.account-reset-invalid .button {
  min-height: 49px;
  border-radius: 13px;
  padding-inline: 18px;
  font-size: 11px;
}

.account-reset-invalid .auth-card-heading h2 {
  margin-top: 12px;
}

.account-reset-invalid .button {
  margin-top: 22px;
}

.account-security-note {
  margin: 19px 0 0;
  color: #999b92;
  font-size: 9px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .header-account-login {
    display: inline-flex;
    width: auto;
    min-width: 64px;
    min-height: 42px;
    grid-template-columns: none;
    border-radius: 999px;
    padding: 0 14px;
  }

  .header-account-login > span,
  .header-account-login > i {
    display: inline;
  }
}

@media (max-width: 680px) {
  .login-help-dialog-card {
    border-radius: 22px;
    padding: 27px 20px 22px;
  }

  .login-help-dialog h2 {
    font-size: 24px;
  }

  .login-help-actions {
    grid-template-columns: 1fr;
  }

  .account-password-layout {
    min-height: 0;
  }
}
