:root {
  --ink: #14212c;
  --muted: #647281;
  --line: #dce7e7;
  --bg: #f3f7f7;
  --panel: #ffffff;
  --accent: #10a875;
  --accent-2: #22d3b6;
  --dark: #0e1a22;
  --amber: #f0b84e;
  --blue: #367cf6;
  --shadow: 0 22px 70px rgba(19, 32, 43, 0.12);
}

* { box-sizing: border-box; }

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(243, 247, 247, 0.88);
  border-bottom: 1px solid rgba(220, 231, 231, 0.72);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (min-width: 1121px) {
  .nav-inner {
    display: grid;
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr) auto auto;
    column-gap: 8px;
  }

  .nav-inner > .links {
    max-width: 100%;
    margin-left: 0;
    justify-self: center;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 0 0 4px rgba(16, 168, 117, 0.12);
}

.brand strong { display: block; font-size: 18px; line-height: 1.1; }
.brand span { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

.links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #52606c;
  font-size: 14px;
  white-space: nowrap;
}

.links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 168, 117, 0.12), rgba(34, 211, 182, 0.18));
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease;
}

.links a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

html:not([lang="zh-CN"]) .hero .lead-reward::before {
  content: " ";
}

.links a:hover {
  color: var(--accent);
  border-color: rgba(16, 168, 117, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(16, 168, 117, 0.12);
}

.links a:hover::before,
.links a.active::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.links a:hover::after,
.links a.active::after {
  transform: scaleX(1);
}

.links a.active {
  color: var(--accent);
  border-color: rgba(16, 168, 117, 0.22);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 24px rgba(16, 168, 117, 0.1);
}

.links a:active {
  transform: translateY(0) scale(0.98);
}

.links a {
  isolation: isolate;
}

.links a {
  z-index: 0;
}

.links a::before,
.links a::after {
  z-index: -1;
}

.locale-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.region-banner,
[data-region-banner] {
  display: none !important;
}

.locale-menu {
  position: relative;
  flex: 0 0 auto;
}

.locale-menu[open] {
  z-index: 20;
}

.locale-trigger {
  min-width: 92px;
  height: 38px;
  display: inline-grid;
  grid-template-columns: 19px auto 14px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #253340;
  background: #f4f7f9;
  cursor: pointer;
  list-style: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.locale-trigger::-webkit-details-marker {
  display: none;
}

.locale-trigger::marker {
  content: "";
}

.locale-trigger svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.locale-current-code {
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.locale-trigger .locale-chevron {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.locale-trigger:hover,
.locale-trigger:focus-visible,
.locale-menu[open] .locale-trigger {
  color: #126dcc;
  border-color: rgba(18, 109, 204, 0.32);
  background: #f7faff;
  box-shadow: 0 8px 20px rgba(18, 72, 126, 0.1);
  outline: none;
}

.locale-menu[open] .locale-chevron {
  transform: rotate(180deg);
}

.locale-trigger:active {
  transform: scale(0.96);
}

.locale-popover {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  width: 196px;
  padding: 7px 0;
  border: 1px solid #e1e7ed;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 48, 67, 0.2);
  animation: locale-menu-in 140ms ease-out;
}

.locale-option {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  color: #344150;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  transition: color 140ms ease, background 140ms ease;
}

.locale-option:hover,
.locale-option:focus-visible {
  color: #126dcc;
  background: #f4f8fc;
  outline: none;
}

.locale-option.is-selected {
  color: #0878e8;
  background: #f7fbff;
  font-weight: 650;
}

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

.mobile-link-strip { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 900;
  white-space: nowrap;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(16, 168, 117, 0.24);
}

.btn.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

.btn.disabled {
  color: #8d9aa4;
  background: #edf2f2;
  border-color: #d9e3e3;
  cursor: not-allowed;
}

.hero {
  position: relative;
  min-height: 700px;
  background:
    linear-gradient(90deg, rgba(243, 247, 247, 0.98), rgba(243, 247, 247, 0.9) 48%, rgba(243, 247, 247, 0.22)),
    url("assets/panda-cloud-login.png") center / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(243, 247, 247, 0), var(--bg));
  pointer-events: none;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 22px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: #087654;
  background: rgba(16, 168, 117, 0.1);
  border: 1px solid rgba(16, 168, 117, 0.18);
  font-size: 13px;
  font-weight: 900;
}

h1 {
  margin: 18px 0 16px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-title {
  max-width: 720px;
  font-size: clamp(42px, 5.7vw, 68px);
  line-height: 1.08;
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 { margin: 0 0 8px; font-size: 20px; }

.lead {
  max-width: 660px;
  margin: 0 0 28px;
  color: #465461;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
}

.lead-reward {
  font: inherit;
  letter-spacing: inherit;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }

.hero-download-cta {
  position: relative;
  isolation: isolate;
  justify-content: flex-start;
  gap: 11px;
  min-width: 226px;
  min-height: 60px;
  max-width: 100%;
  overflow: hidden;
  padding: 7px 10px 7px 8px;
  border-color: rgba(255, 255, 255, 0.58);
  border-radius: 14px;
  font-size: 17px;
  letter-spacing: 0;
  box-shadow: 0 18px 38px rgba(12, 158, 117, 0.32), 0 4px 10px rgba(14, 26, 34, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: hero-cta-pulse 3.2s ease-in-out infinite;
}

.hero-download-cta::before {
  position: absolute;
  inset: -40% auto -40% -38%;
  z-index: -1;
  width: 24%;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  animation: hero-cta-shine 3.6s ease-in-out infinite;
}

.hero-download-cta:hover,
.hero-download-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 23px 44px rgba(12, 158, 117, 0.4), 0 6px 14px rgba(14, 26, 34, 0.14);
}

.hero-download-cta:focus-visible {
  outline: 3px solid rgba(14, 26, 34, 0.24);
  outline-offset: 3px;
}

.hero-download-icon,
.hero-download-label,
.hero-download-cta small {
  position: relative;
  z-index: 1;
}

.hero-download-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(6, 100, 75, 0.2);
  font-size: 25px;
  line-height: 1;
  animation: hero-download-arrow 1.8s ease-in-out infinite;
}

.hero-download-label {
  font-size: 17px;
  line-height: 1.1;
  font-weight: 950;
}

.hero-download-cta small {
  margin-left: auto;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(4, 89, 66, 0.18);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
}

.proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
  max-width: 720px;
}

.proof div, .card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 231, 231, 0.88);
  box-shadow: 0 12px 36px rgba(19, 32, 43, 0.06);
}

.proof div {
  padding: 16px;
  border-radius: 16px;
  animation: float-card 5.8s ease-in-out infinite;
}

.proof div:nth-child(2) { animation-delay: 0.5s; }
.proof div:nth-child(3) { animation-delay: 1s; }
.proof div:nth-child(4) { animation-delay: 1.5s; }

.proof strong { display: block; font-size: 22px; }
.proof span { color: var(--muted); font-size: 13px; }

.phone-card {
  width: min(360px, 100%);
  justify-self: center;
  border-radius: 40px;
  padding: 14px;
  background: #121a22;
  box-shadow: 0 38px 95px rgba(14, 26, 34, 0.28);
}

.phone-screen {
  min-height: 640px;
  border-radius: 28px;
  padding: 38px 18px 22px;
  background: #eef2f5;
  overflow: hidden;
}

.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.app-head img { width: 54px; height: 54px; border-radius: 16px; }

.status {
  display: grid;
  justify-items: end;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.switch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #12b988 0 34%, #90e2c8 36% 62%, rgba(18, 168, 117, 0.18) 64%);
  animation: pulse-switch 1.8s ease-in-out infinite;
}

.credits {
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
  margin: 18px 0 8px;
}

.runline { color: #52606c; font-size: 14px; margin-bottom: 16px; }

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

.mini-grid div, .phone-section {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
}

.mini-grid strong { display: block; font-size: 18px; }
.mini-grid span, .phone-section span { display: block; color: var(--muted); font-size: 12px; }
.phone-section { margin-top: 10px; }
.phone-section strong { display: block; }

.promo-video-section {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 44px 22px 72px;
  overflow: hidden;
  color: #f4fbf9;
  background:
    linear-gradient(118deg, rgba(16, 168, 117, 0.13) 0 27%, transparent 27.2%),
    linear-gradient(180deg, #0e1a22, #11252b);
}

.promo-video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(86, 154, 151, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 154, 151, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
}

.promo-video-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.promo-video-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 56px;
  align-items: start;
}

.promo-video-heading h2 {
  max-width: 760px;
  color: #fff;
}

.promo-video-heading p {
  max-width: 440px;
  margin: 0;
  color: #aac0bd;
  font-size: 17px;
}

.promo-video-sequence {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 32px 0 18px;
  border-top: 1px solid rgba(115, 211, 187, 0.22);
  border-bottom: 1px solid rgba(115, 211, 187, 0.22);
}

.promo-video-inner > .promo-video-sequence:first-child {
  margin-top: 0;
}

.promo-video-sequence span {
  --step-accent: #52dfba;
  --step-progress: 0;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border-right: 1px solid rgba(115, 211, 187, 0.22);
  transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease;
}

.promo-video-sequence span:last-child { border-right: 0; }

.promo-video-sequence i {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #09231e;
  background: var(--step-accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.promo-video-sequence i svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promo-video-sequence span:nth-child(2) { --step-accent: #f0b84e; }
.promo-video-sequence span:nth-child(3) { --step-accent: #6aa9ff; }
.promo-video-sequence span:nth-child(4) { --step-accent: #d2e25c; }
.promo-video-sequence span:nth-child(5) { --step-accent: #e59aff; }
.promo-video-sequence span:nth-child(6) { --step-accent: #73e2cf; }
.promo-video-sequence b {
  position: relative;
  z-index: 1;
  color: #eef8f5;
  font-size: 15px;
}

@media (min-width: 621px) {
  .promo-video-sequence span {
    overflow: hidden;
    transition: transform 280ms ease, color 240ms ease, background-color 240ms ease, border-color 240ms ease, box-shadow 280ms ease;
  }

  .promo-video-sequence span::before {
    content: "";
    position: absolute;
    top: -30%;
    bottom: -30%;
    left: -42%;
    z-index: 0;
    width: 24%;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
  }

  .promo-video-sequence span::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 4px;
    left: 16px;
    z-index: 1;
    height: 2px;
    border-radius: 999px;
    background: var(--step-accent);
    box-shadow: 0 0 12px color-mix(in srgb, var(--step-accent) 58%, transparent);
    transform: scaleX(var(--step-progress));
    transform-origin: left center;
    transition: transform 140ms linear;
  }

  .promo-video-sequence span.is-active {
    z-index: 2;
    background:
      radial-gradient(circle at 50% 0, color-mix(in srgb, var(--step-accent) 22%, transparent), transparent 66%),
      rgba(11, 36, 42, 0.9);
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.2),
      0 0 0 1px color-mix(in srgb, var(--step-accent) 18%, transparent) inset;
    animation: promo-step-float 2.8s ease-in-out infinite;
  }

  .promo-video-sequence span.is-active::before {
    opacity: 1;
    animation: promo-step-sheen 2.8s ease-in-out infinite;
  }

  .promo-video-sequence span.is-complete:not(.is-active) {
    background: color-mix(in srgb, var(--step-accent) 7%, transparent);
  }

  .promo-video-sequence i {
    transition: transform 260ms ease, box-shadow 260ms ease;
  }

  .promo-video-sequence i::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1px solid color-mix(in srgb, var(--step-accent) 52%, transparent);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.76);
  }

  .promo-video-sequence span.is-active i {
    box-shadow: 0 6px 20px color-mix(in srgb, var(--step-accent) 52%, transparent);
    animation: promo-step-icon-pulse 1.7s ease-out infinite;
  }

  .promo-video-sequence span.is-active i::after {
    animation: promo-step-ring 1.7s ease-out infinite;
  }

  .promo-video-sequence b {
    transition: color 240ms ease, transform 240ms ease;
  }

  .promo-video-sequence span.is-active b {
    color: #fff;
    transform: translateY(-1px);
  }
}

.promo-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(117, 229, 200, 0.34);
  border-radius: 8px;
  background: #091219;
  box-shadow: 0 30px 80px rgba(3, 10, 15, 0.42);
}

.promo-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #091219;
}

.promo-video-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: opacity 520ms ease, visibility 520ms step-start;
}

.promo-video-ui.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 520ms ease, visibility 520ms step-end;
}

.promo-video-ui-card {
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease;
}

.promo-video-ui.is-hidden .promo-video-ui-card {
  opacity: 0;
  transform: translateY(-10px) scale(0.985);
}

.promo-video-ui-card {
  position: relative;
  display: flex;
  width: 62%;
  height: 80%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 26px 34px;
  overflow: hidden;
  border: 1px solid rgba(92, 235, 207, 0.64);
  border-radius: 22px;
  color: #f3fbf9;
  background: #051820;
  box-shadow: 0 22px 60px rgba(1, 9, 13, 0.36);
  text-align: center;
  text-rendering: geometricPrecision;
}

.promo-video-ui-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(82, 223, 186, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 223, 186, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.promo-video-ui-card > * {
  position: relative;
  z-index: 1;
}

.promo-video-ui-card img {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(130, 241, 216, 0.46);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(82, 223, 186, 0.1);
}

.promo-video-ui-card > strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
}

.promo-video-ui-card h3 {
  max-width: 92%;
  margin: 12px 0 0;
  color: #5cebcf;
  font-size: 27px;
  line-height: 1.25;
}

.promo-video-ui-card p {
  margin: 8px 0 0;
  color: #d4e3df;
  font-size: 14px;
  font-weight: 700;
}

.promo-video-ui-tags {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.promo-video-ui-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 13px;
  border: 1px solid rgba(92, 235, 207, 0.22);
  border-radius: 999px;
  color: #c8f8eb;
  background: rgba(16, 168, 117, 0.2);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.promo-video-ui-card small {
  display: block;
  margin-top: 20px;
  color: #c8d9d5;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 920px) {
  .promo-video-ui-card {
    width: 68%;
    height: 84%;
    padding: 16px 22px;
    border-radius: 16px;
  }
  .promo-video-ui-card img { width: 54px; height: 54px; border-radius: 14px; }
  .promo-video-ui-card > strong { margin-top: 7px; font-size: 23px; }
  .promo-video-ui-card h3 { margin-top: 7px; font-size: 20px; }
  .promo-video-ui-card p { margin-top: 5px; font-size: 11px; }
  .promo-video-ui-tags { gap: 6px; margin-top: 11px; }
  .promo-video-ui-tags span { min-height: 24px; padding: 0 9px; font-size: 10px; }
  .promo-video-ui-card small { margin-top: 11px; font-size: 10px; }
}

@media (max-width: 620px) {
  .promo-video-ui-card {
    width: 90%;
    height: 90%;
    padding: 8px 12px;
    border-radius: 10px;
  }
  .promo-video-ui-card img { width: 34px; height: 34px; border-radius: 9px; box-shadow: none; }
  .promo-video-ui-card > strong { margin-top: 4px; font-size: 16px; }
  .promo-video-ui-card h3 { max-width: 100%; margin-top: 4px; font-size: 13px; line-height: 1.2; }
  .promo-video-ui-card p { max-width: 92%; margin-top: 3px; font-size: 9px; line-height: 1.3; }
  .promo-video-ui-tags { display: none; }
  .promo-video-ui-card small { margin-top: 5px; font-size: 9px; }
}

.promo-video-note {
  margin: 14px 0 0;
  color: #829d9b;
  font-size: 12px;
}

.ad-phone {
  transform: none;
}

.ad-screen {
  position: relative;
  min-height: 660px;
  padding: 30px 18px 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  background:
    radial-gradient(circle at 80% 12%, rgba(34, 211, 182, 0.24), transparent 28%),
    linear-gradient(180deg, #f8fbfb 0%, #eef4f4 100%);
}

.ad-screen::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(16, 168, 117, 0.12);
  pointer-events: none;
}

.ad-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 10px;
  margin: 0 10px 12px;
}

.ad-top img {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  box-shadow: 0 0 0 5px rgba(16, 168, 117, 0.1);
}

.ad-top strong { display: block; font-size: 22px; line-height: 1.2; }
.ad-top span { display: block; color: #53636f; font-size: 13px; font-weight: 600; }

.ad-top em {
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  animation: live-blink 1.8s ease-in-out infinite;
}

.ad-stage {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(34, 211, 182, 0.12), transparent 34%),
    #101820;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 38px rgba(16, 24, 32, 0.18);
}

.ad-stage::before,
.ad-stage::after {
  content: "";
  position: absolute;
  inset: auto 16px 16px;
  z-index: 6;
  height: 4px;
  border-radius: 999px;
  pointer-events: none;
}

.ad-stage::after {
  background: rgba(255, 255, 255, 0.12);
}

.ad-stage::before {
  z-index: 7;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 14px rgba(34, 211, 182, 0.46);
  transform: scaleX(0);
  transform-origin: left center;
  animation: ad-stage-progress 3s linear infinite;
}

.ad-slide {
  position: relative;
  grid-area: 1 / 1;
  display: grid;
  grid-template-rows: auto auto auto minmax(12px, 1fr) auto;
  min-width: 0;
  min-height: 260px;
  padding: 22px 22px 32px;
  color: #eef8f5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.985);
  will-change: opacity, transform;
  animation: ad-slide 15s cubic-bezier(0.22, 1, 0.36, 1) infinite both;
}

.ad-slide h3 {
  font-size: 26px;
  line-height: 1.18;
  margin: 0 0 6px;
  overflow-wrap: anywhere;
}

.ad-slide p {
  margin: 0;
  color: #c3d0cd;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.ad-kicker {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #9ff3d8;
  background: rgba(16, 168, 117, 0.14);
  font-size: 12px;
  font-weight: 900;
}

.ad-kicker::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #59e4be;
  box-shadow: 0 0 0 0 rgba(89, 228, 190, 0.4);
  content: "";
  animation: ad-live-dot 1.4s ease-out infinite;
}

.ad-slide-two { animation-delay: 3s; }
.ad-slide-three { animation-delay: 6s; }
.ad-slide-four { animation-delay: 9s; }
.ad-slide-five { animation-delay: 12s; }

.ad-device-map {
  display: grid;
  grid-row: 5;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 0;
}

.ad-device-map b {
  padding: 14px 6px;
  border-radius: 14px;
  text-align: center;
  color: #101820;
  background: linear-gradient(135deg, #e8fff6, #9ff3d8);
  animation: pop-node 2.2s ease-in-out infinite;
}

.ad-device-map b:nth-child(2) { animation-delay: 0.28s; }
.ad-device-map b:nth-child(3) { animation-delay: 0.56s; }

.ad-wave {
  grid-row: 5;
  height: 82px;
  margin-top: 0;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 168, 117, 0.08), rgba(34, 211, 182, 0.18)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 18px 20px);
}

.ad-wave span {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 182, 0.86), transparent);
  animation: data-flow 1.5s linear infinite;
}

.ad-reward {
  grid-row: 5;
  width: fit-content;
  margin-top: 0;
  padding: 13px 18px;
  border-radius: 17px;
  color: #101820;
  background: linear-gradient(135deg, #f7d56a, #fff0a8);
  font-size: 30px;
  font-weight: 950;
  animation: reward-pop 1.4s ease-in-out infinite;
}

.ad-health {
  grid-row: 5;
  height: 14px;
  margin-top: 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.ad-health span {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: left center;
  animation: health-fill 1.7s ease-in-out infinite;
}

.ad-settle {
  grid-row: 5;
  margin-top: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.ad-settle b {
  font-size: 54px;
  line-height: 1;
}

.ad-settle span {
  color: #9ff3d8;
  font-size: 20px;
  font-weight: 900;
}

.ad-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.ad-stats div {
  padding: 12px 8px;
  border-radius: 15px;
  background: #fff;
  text-align: center;
}

.ad-stats strong { display: block; font-size: 17px; }
.ad-stats span { color: #52616d; font-size: 12px; font-weight: 600; }

.ad-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.ad-timeline span {
  min-height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #53636f;
  background: rgba(16, 168, 117, 0.08);
  font-size: 11px;
  font-weight: 900;
  animation: timeline-glow 15s infinite;
}

.ad-timeline span:nth-child(2) { animation-delay: 3s; }
.ad-timeline span:nth-child(3) { animation-delay: 6s; }
.ad-timeline span:nth-child(4) { animation-delay: 9s; }
.ad-timeline span:nth-child(5) { animation-delay: 12s; }

.ad-bottom {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  padding: 15px 16px 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(19, 32, 43, 0.07);
}

.ad-bottom strong { display: block; font-size: 18px; }
.ad-bottom span { color: #52616d; font-size: 13px; font-weight: 600; }

.ad-bottom-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.ad-bottom-head em {
  padding: 4px 8px;
  border-radius: 999px;
  color: #0d8f69;
  background: rgba(16, 168, 117, 0.1);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.ad-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.ad-mini-grid div {
  padding: 10px 10px;
  border-radius: 13px;
  background: #eef8f5;
}

.ad-mini-grid b {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1;
}

.ad-mini-grid small {
  display: block;
  margin-top: 5px;
  color: #52616d;
  font-size: 11px;
  font-weight: 800;
}

.ad-cash-line {
  height: 5px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #dcecea;
}

.ad-cash-line i {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2));
  animation: data-flow 1.9s linear infinite;
}

.signal-line {
  height: 7px;
  border-radius: 999px;
  margin: 12px 0;
  overflow: hidden;
  background: rgba(16, 168, 117, 0.13);
}

.signal-line span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(16, 168, 117, 0), var(--accent), rgba(34, 211, 182, 0));
  animation: data-flow 2.1s linear infinite;
}

section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 22px 0;
}

.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 22px 36px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.audience-section {
  position: relative;
}

.audience-section::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 168, 117, 0.28), transparent);
}

.audience-head {
  align-items: center;
}

.audience-head h2 {
  margin-top: 0;
}

.audience-summary {
  max-width: 560px;
  padding: 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 10%, rgba(34, 211, 182, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(220, 231, 231, 0.9);
  box-shadow: 0 14px 34px rgba(19, 32, 43, 0.05);
}

.summary-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.summary-points span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #0d8f69;
  background: rgba(16, 168, 117, 0.09);
  font-size: 12px;
  font-weight: 900;
}

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

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

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mini-tags span {
  padding: 7px 9px;
  border-radius: 999px;
  color: #0d8f69;
  background: rgba(16, 168, 117, 0.09);
  font-size: 12px;
  font-weight: 900;
}

.audience-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(34, 211, 182, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 250, 247, 0.92));
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 168, 117, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 168, 117, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.32), transparent 62%);
  pointer-events: none;
}

.audience-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -52px;
  bottom: -54px;
  border-radius: 50%;
  border: 1px solid rgba(16, 168, 117, 0.22);
  box-shadow: inset 0 0 42px rgba(34, 211, 182, 0.08);
  animation: rotate-orbit 16s linear infinite;
}

.audience-card > * {
  position: relative;
  z-index: 1;
}

.tech-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 168, 117, 0.16), rgba(34, 211, 182, 0.08));
  box-shadow: 0 14px 34px rgba(16, 168, 117, 0.16);
}

.tech-icon i {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 2px solid var(--accent);
}

.user-node i {
  border-radius: 50%;
}

.user-node i::before,
.user-node i::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
}

.user-node i::before {
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.user-node i::after {
  bottom: 5px;
  width: 17px;
  height: 8px;
  border-radius: 999px 999px 5px 5px;
}

.device-node i::before,
.device-node i::after,
.network-node i::before,
.network-node i::after {
  content: "";
  position: absolute;
  background: var(--accent);
}

.device-node i::before {
  left: 6px;
  right: 6px;
  top: 8px;
  height: 3px;
  border-radius: 999px;
  box-shadow: 0 7px 0 var(--accent), 0 14px 0 var(--accent);
}

.device-node i::after {
  width: 5px;
  height: 5px;
  right: 6px;
  top: 7px;
  border-radius: 50%;
  box-shadow: 0 7px 0 var(--accent), 0 14px 0 var(--accent);
}

.network-node i {
  border-radius: 50%;
}

.network-node i::before {
  inset: 12px 4px auto;
  height: 2px;
  transform: rotate(34deg);
}

.network-node i::after {
  width: 7px;
  height: 7px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  box-shadow: 17px 2px 0 var(--accent), 10px 20px 0 var(--accent);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 20px;
  align-items: stretch;
}

.story-panel {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 30px;
  background: #101820;
  color: #eef8f5;
  overflow: hidden;
  position: relative;
}

.story-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.16;
  text-wrap: balance;
}

.story-panel p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 16px 0 0;
  color: #b7c9c5;
  font-size: 15px;
  line-height: 1.72;
}

.feature-chips {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin-top: auto;
  padding-top: 22px;
  max-width: 520px;
}

.feature-prime,
.feature-tile {
  position: relative;
  color: #d9fff6;
  background: transparent;
}

.feature-prime {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 13px;
  row-gap: 2px;
  min-height: 68px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(84, 221, 186, 0.3);
}

.feature-tile {
  --feature-node: #42d6b2;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 9px;
  padding: 18px 6px 0;
  text-align: center;
  font-weight: 900;
}

.feature-tile::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid #101820;
  border-radius: 50%;
  background: var(--feature-node);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--feature-node) 18%, transparent);
  transform: translateX(-50%);
  animation: pulse-switch 2.8s ease-in-out infinite;
}

.feature-prime i,
.feature-tile i {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(34, 211, 182, 0.14);
}

.feature-prime i {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 8px rgba(34, 211, 182, 0.08);
}

.feature-prime i::before,
.feature-tile i::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid #eafff8;
}

.feature-prime strong {
  grid-column: 2;
  grid-row: 1;
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.feature-prime span {
  grid-column: 2;
  grid-row: 2;
  display: block;
  margin-top: 1px;
  color: #9fb4af;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.feature-tile span {
  max-width: 110px;
  font-size: 12px;
  line-height: 1.35;
}

.feature-tile:nth-child(2) {
  --feature-node: #f7d56a;
}

.feature-tile:nth-child(2) i { background: rgba(247, 213, 106, 0.2); }

.feature-tile:nth-child(3) {
  --feature-node: #6aa0ff;
}

.feature-tile:nth-child(3) i { border-radius: 50%; }

.feature-tile:nth-child(4) { --feature-node: #42d6b2; }

.feature-tile:nth-child(4) i::before {
  inset: 7px 5px;
  border-radius: 4px;
}

.feature-tile:nth-child(5) { --feature-node: #c987e8; }

.feature-tile:nth-child(5) i::before {
  inset: 6px;
  border-radius: 3px;
  transform: rotate(45deg);
}

.orbit {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -72px;
  bottom: -72px;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 182, 0.28);
  animation: rotate-orbit 13s linear infinite;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 24px rgba(34, 211, 182, 0.72);
}

.orbit::before { left: 26px; top: 42px; }
.orbit::after { right: 42px; bottom: 28px; background: var(--amber); }

.stack-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: 14px;
}

.stack-item {
  --stack-tone: #10a875;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  min-width: 0;
  position: relative;
  gap: 0;
  padding: 24px 22px 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(19, 32, 43, 0.055);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.stack-item::before {
  content: "";
  width: 38px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--stack-tone);
}

.stack-item:nth-child(2) { --stack-tone: #3987e8; }
.stack-item:nth-child(3) { --stack-tone: #d79a21; }
.stack-item:nth-child(4) { --stack-tone: #8566d9; }

@media (hover: hover) {
  .stack-item:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--stack-tone) 38%, var(--line));
    box-shadow: 0 18px 34px rgba(19, 32, 43, 0.09);
  }
}

.stack-item b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--accent);
  background: rgba(16, 168, 117, 0.1);
}

.stack-item strong {
  display: block;
  margin-bottom: 9px;
  font-size: 18px;
  line-height: 1.35;
}

.stack-item br { display: none; }

.stack-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.pill {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(16, 168, 117, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.flow-card {
  min-height: 180px;
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.flow-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: left;
  animation: grow-line 3.2s ease-in-out infinite;
}

.flow-card strong { display: block; font-size: 28px; margin-bottom: 8px; }
.flow-card span { color: var(--muted); font-size: 13px; }

html:not([lang="zh-CN"]) .flow-card h3 {
  font-size: 18px;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.journey {
  display: grid;
  gap: 18px;
}

.journey-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  align-items: stretch;
}

.journey-label {
  border-radius: 18px;
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, #14212c, #244152);
}

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

.ops-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 2.15fr);
  gap: 18px;
}

.ops-side {
  border-radius: 22px;
  padding: 22px;
  background: #101820;
  color: #eef8f5;
}

.ops-side p { color: #9fb4af; }

.ops-side h2 {
  font-size: 30px;
  line-height: 1.15;
  overflow-wrap: break-word;
  hyphens: auto;
}

.ops-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.download-hero {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 18px;
  align-items: stretch;
}

.download-panel {
  border-radius: 24px;
  padding: 28px;
  background: #101820;
  color: #eef8f5;
}

.download-panel p { color: #9fb4af; }

.test-matrix {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.check-table {
  display: grid;
  gap: 10px;
}

.check-row {
  display: grid;
  grid-template-columns: 140px 1fr 90px;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.check-row span { color: var(--muted); font-size: 13px; }

.motion-strip {
  max-width: none;
  padding: 0;
  margin-top: 36px;
  overflow: hidden;
  background: #e9f3f1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.motion-strip + section {
  padding-top: 39px;
}

.motion-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 16px 0;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
}

.motion-track.is-running {
  animation: motion-marquee var(--motion-duration, 130s) linear infinite;
}

.motion-group {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.motion-track span {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: #52606c;
  font-weight: 900;
  white-space: nowrap;
}

@keyframes motion-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(var(--motion-distance, -50%), 0, 0); }
}

.card {
  border-radius: 18px;
  padding: 22px;
}

.card p { margin: 0; color: var(--muted); }

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  margin-bottom: 16px;
  background: rgba(16, 168, 117, 0.1);
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
}

.feature-list, .timeline, .formula {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.feature-list div, .timeline div, .formula div {
  padding: 14px 16px;
  border-radius: 14px;
  background: #f6faf9;
  border: 1px solid #e2eeec;
}

.formula div { font-weight: 900; }

.dark-band {
  max-width: none;
  margin-top: 78px;
  padding: 74px 22px;
  background: #101820;
  color: #eef8f5;
}

.dark-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.dark-band .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
  gap: 52px;
}

.dark-band .section-head > * {
  min-width: 0;
}

.dark-band .section-head h2 {
  max-width: 690px;
  font-size: 46px;
  line-height: 1.08;
  white-space: normal;
  overflow-wrap: break-word;
  hyphens: auto;
  text-wrap: balance;
}

.dark-band .section-head p {
  max-width: 480px;
  padding-top: 0;
  line-height: 1.7;
}

@media (min-width: 921px) {
  .dark-band .section-head h2 {
    width: min(100%, 690px);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

.dark-band p { color: #9fb4af; }

.partner-strip {
  position: relative;
  display: block;
  margin-top: 10px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: marquee 82s linear infinite;
}

.partner-strip:hover .partner-track {
  animation-play-state: paused;
}

.ecosystem-disclaimer {
  max-width: 1040px;
  margin: 16px auto 30px;
  padding: 12px 16px;
  border: 1px solid rgba(79, 209, 176, 0.22);
  border-left: 3px solid #35d0ad;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: #a9bdb8 !important;
  font-size: 13px;
  line-height: 1.7;
}

.partner-logo {
  position: relative;
  flex: 0 0 170px;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 10px 14px;
  overflow: hidden;
  border-radius: 20px;
  color: #eafff8;
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.partner-logo::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--logo-glow, #22d3b6), transparent);
  opacity: 0.72;
}

.partner-logo img {
  width: 48px;
  height: 48px;
  display: block;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 14px 26px rgba(0, 0, 0, 0.22);
  object-fit: contain;
}

.partner-logo b {
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.1;
}


.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.metric {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric strong { display: block; font-size: 28px; color: #fff; }
.metric span { color: #9fb4af; font-size: 13px; }

.strength-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.strength-row div {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.strength-row b {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.strength-row span {
  color: #9fb4af;
  font-size: 13px;
}

.mobile-fold-trigger {
  all: unset;
  display: contents;
}

.mobile-fold-chevron {
  display: none;
}

.company-history {
  padding-top: 88px;
  padding-bottom: 78px;
}

.history-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  gap: clamp(36px, 4vw, 52px);
  align-items: center;
  margin-bottom: 32px;
}

.history-head h2 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(36px, 3.45vw, 44px);
  line-height: 1.1;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.history-head p {
  max-width: 540px;
  margin: 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid rgba(16, 168, 117, 0.7);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.history-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.48fr);
  gap: 16px;
  align-items: start;
  min-height: 356px;
  padding: 18px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(244, 249, 248, 0.9) 0%, rgba(244, 249, 248, 0.84) 42%, rgba(244, 249, 248, 0.96) 100%),
    url("assets/panda-cloud-login.png") left center / 470px auto no-repeat,
    #f5faf8;
  border: 1px solid rgba(220, 231, 231, 0.9);
  box-shadow: 0 22px 50px rgba(19, 32, 43, 0.08);
}

.history-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 72%, rgba(34, 211, 182, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0.96) 100%);
  pointer-events: none;
}

.history-overlay,
.history-timeline {
  position: relative;
  z-index: 1;
}

.history-overlay {
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: 18px;
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.9), rgba(18, 51, 49, 0.76)),
    url("assets/panda-cloud-logo.png") center 42px / 148px auto no-repeat,
    radial-gradient(circle at 90% 10%, rgba(34, 211, 182, 0.22), transparent 30%),
    rgba(16, 24, 32, 0.84);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 900;
  overflow: hidden;
  isolation: isolate;
}

.history-overlay::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.18), transparent 25%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: -1;
}

.history-overlay::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -62px;
  top: -48px;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 182, 0.28);
  box-shadow: 0 0 60px rgba(34, 211, 182, 0.22);
  pointer-events: none;
}

.history-carousel {
  position: relative;
  min-height: 220px;
}

.history-carousel article {
  position: absolute;
  inset: auto 0 0;
  opacity: 0;
  transform: translateY(18px);
  animation: history-slide 16s ease-in-out infinite;
}

.history-carousel article:nth-child(2) { animation-delay: 4s; }
.history-carousel article:nth-child(3) { animation-delay: 8s; }
.history-carousel article:nth-child(4) { animation-delay: 12s; }

.history-overlay small {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #9ff4de;
  background: rgba(16, 168, 117, 0.16);
  border: 1px solid rgba(34, 211, 182, 0.18);
  font-size: 11px;
  letter-spacing: 0;
}

.history-overlay strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.history-overlay span {
  display: block;
  margin-top: 8px;
  color: #c7dbd7;
  font-size: 13px;
  line-height: 1.55;
}

.history-carousel div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.history-overlay em {
  padding: 6px 9px;
  border-radius: 999px;
  color: #101820;
  background: linear-gradient(135deg, var(--accent-2), #f7d56a);
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.history-dots {
  display: flex;
  gap: 6px;
  margin-top: 18px;
}

.history-dots i {
  width: 20px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  animation: history-dot 16s ease-in-out infinite;
}

.history-dots i:nth-child(2) { animation-delay: 4s; }
.history-dots i:nth-child(3) { animation-delay: 8s; }
.history-dots i:nth-child(4) { animation-delay: 12s; }

.history-carousel-ready .history-carousel article {
  animation: none;
  pointer-events: none;
  transition: opacity 240ms ease, transform 320ms ease;
}

.history-carousel-ready .history-carousel article.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.history-carousel-ready .history-dots i {
  animation: none;
  transition: background 220ms ease, transform 220ms ease;
}

.history-carousel-ready .history-dots i.is-active {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(1.35);
}

.history-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.history-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 8px;
  min-height: 146px;
  padding: 16px 16px 14px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(19, 32, 43, 0.05);
}

.history-timeline article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.history-timeline b {
  color: var(--accent);
  font-size: 26px;
  line-height: 1;
}

.history-timeline strong {
  color: var(--ink);
  font-size: 18px;
}

.history-timeline span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.history-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.advantage-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(32px, 4vw, 46px);
  margin-top: 28px;
  padding-top: 22px;
}

.advantage-head::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 168, 117, 0.36), transparent);
}

.advantage-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.advantage-head p {
  max-width: 640px;
  margin: 0;
  padding: 3px 0 3px 24px;
  border-left: 2px solid rgba(16, 168, 117, 0.58);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.history-cards div {
  min-height: 150px;
  padding: 18px;
  border-radius: 18px;
  color: #eafff8;
  background:
    radial-gradient(circle at 82% 12%, rgba(34, 211, 182, 0.18), transparent 30%),
    linear-gradient(145deg, #101820, #203443);
  border: 1px solid rgba(34, 211, 182, 0.12);
}

.history-cards i {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #101820;
  background: linear-gradient(135deg, var(--accent-2), #f7d56a);
  font-style: normal;
  font-weight: 950;
}

.history-cards i svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.history-cards strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
}

.history-cards span {
  color: #9fb4af;
  font-size: 13px;
  line-height: 1.7;
}

.home-download-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  align-items: stretch;
  min-height: 238px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(16, 168, 117, 0.26);
  border-radius: 20px;
  background: #eaf7f5;
  box-shadow: 0 22px 54px rgba(19, 32, 43, 0.1);
}

.home-download-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.54;
  background:
    linear-gradient(rgba(16, 168, 117, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 168, 117, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
}

.home-download-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 46px 24px 18px;
  text-align: center;
}

.home-download-copy h3 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.25vw, 42px);
  line-height: 1.16;
}

.home-download-copy p {
  max-width: 620px;
  margin: 10px 0 0;
  color: #516472;
  font-size: 15px;
}

.home-download-button {
  min-width: 250px;
  min-height: 50px;
  margin-top: 20px;
  padding-right: 28px;
  padding-left: 28px;
}

.home-download-art {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  overflow: hidden;
}

.home-download-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #d5e9f3;
}

.home-download-art-left::before {
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}

.home-download-art-right::before {
  background: #dce5fb;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

.home-download-art::after {
  content: "";
  position: absolute;
  width: 172px;
  height: 172px;
  border: 1px solid rgba(14, 26, 34, 0.2);
  border-radius: 50%;
}

.home-download-logo {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(14, 26, 34, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(19, 32, 43, 0.16);
}

.home-download-logo img {
  width: 78px;
  height: 78px;
  border-radius: 22px;
}

.home-download-art-left .home-download-logo { transform: rotate(-6deg); }
.home-download-art-right .home-download-logo { transform: rotate(6deg); }

.home-download-signal {
  position: absolute;
  right: calc(50% - 70px);
  bottom: 36px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid #12202a;
  border-radius: 50%;
  color: #12202a;
  background: #f7cf62;
  box-shadow: 0 8px 18px rgba(19, 32, 43, 0.16);
  font-style: normal;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.home-download-art-right .home-download-signal {
  right: auto;
  left: calc(50% - 70px);
}

@media (max-width: 920px) {
  .home-download-panel {
    grid-template-columns: 132px minmax(0, 1fr) 132px;
  }
  .home-download-copy { padding-right: 14px; padding-left: 14px; }
  .home-download-copy h3 { font-size: 28px; }
  .home-download-logo { width: 78px; height: 78px; border-radius: 22px; }
  .home-download-logo img { width: 64px; height: 64px; border-radius: 18px; }
  .home-download-art::after { width: 132px; height: 132px; }
  .home-download-signal { right: calc(50% - 55px); bottom: 42px; width: 38px; height: 38px; font-size: 20px; }
  .home-download-art-right .home-download-signal { right: auto; left: calc(50% - 55px); }
}

@media (max-width: 620px) {
  .home-download-panel {
    display: block;
    min-height: 0;
    margin-top: 22px;
    border-radius: 16px;
  }
  .home-download-art-left {
    min-height: 98px;
    overflow: visible;
  }
  .home-download-art-left::before { clip-path: none; }
  .home-download-art-left::after { width: 108px; height: 108px; }
  .home-download-art-right { display: none; }
  .home-download-logo { width: 68px; height: 68px; border-radius: 20px; }
  .home-download-logo img { width: 56px; height: 56px; border-radius: 16px; }
  .home-download-art-left .home-download-logo { transform: rotate(-4deg); }
  .home-download-signal { right: calc(50% - 58px); bottom: 8px; width: 34px; height: 34px; font-size: 18px; }
  .home-download-copy { padding: 20px 18px 26px; }
  .home-download-copy h3 { font-size: 27px; }
  .home-download-copy p { font-size: 14px; line-height: 1.7; }
  .home-download-button { width: min(100%, 270px); min-width: 0; margin-top: 18px; }
}

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

.download-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(54, 124, 246, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.tag.warn {
  color: #8a5a04;
  background: rgba(242, 184, 75, 0.16);
}

code {
  display: inline-flex;
  padding: 3px 7px;
  border-radius: 8px;
  background: #eef4f4;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 13px;
}

footer {
  margin-top: 80px;
  padding: 34px 22px;
  color: #9fb4af;
  background: #101820;
}

footer .foot-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.registration-page {
  min-height: calc(100vh - 72px);
  padding: 46px 22px 72px;
  background:
    linear-gradient(180deg, rgba(243, 247, 247, 0.76), rgba(243, 247, 247, 0.96)),
    url("assets/panda-cloud-login.png") center / cover fixed no-repeat;
}

.registration-shell {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  width: min(1180px, 100%);
  min-height: 700px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(204, 222, 219, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(19, 32, 43, 0.14);
}

.registration-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 34px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(9, 27, 34, 0.78), rgba(9, 27, 34, 0.95)),
    url("assets/panda-cloud-login.png") center / cover no-repeat;
}

.registration-aside::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), #d9dd70);
}

.registration-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.registration-brand img {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(94, 234, 199, 0.14);
}

.registration-brand strong,
.registration-brand span {
  display: block;
}

.registration-brand strong {
  font-size: 18px;
}

.registration-brand span {
  margin-top: 2px;
  color: #bed0cd;
  font-size: 12px;
}

.registration-aside-copy {
  position: relative;
  z-index: 1;
  margin-top: 74px;
}

.registration-kicker,
.registration-panel-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #8cf1d5;
  background: rgba(32, 211, 177, 0.12);
  border: 1px solid rgba(60, 224, 190, 0.22);
  font-size: 11px;
  font-weight: 900;
}

.registration-aside h1 {
  max-width: 290px;
  margin: 16px 0 14px;
  color: #fff;
  font-size: 38px;
  line-height: 1.1;
}

.registration-aside-copy p {
  margin: 0;
  color: #c2d1cf;
  font-size: 14px;
  line-height: 1.75;
}

.registration-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 42px;
}

.registration-benefits > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.registration-benefits i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #09231d;
  background: #83ead0;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.registration-benefits strong,
.registration-benefits small {
  display: block;
}

.registration-benefits strong {
  font-size: 13px;
}

.registration-benefits small {
  margin-top: 2px;
  color: #adc1bd;
  font-size: 11px;
  line-height: 1.45;
}

.registration-aside-note {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: #8ea8a2;
  font-size: 10px;
  line-height: 1.55;
}

.registration-shell > .registration-workspace {
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 30px 42px 34px;
}

.registration-workspace-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.registration-back-home {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.registration-back-home:hover {
  color: var(--accent);
}

.registration-step-count {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.registration-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 28px 0 12px;
  padding: 0;
  list-style: none;
}

.registration-steps li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #8a98a2;
  font-size: 12px;
  font-weight: 850;
}

.registration-steps b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: #71808b;
  background: #edf3f2;
  font-size: 12px;
}

.registration-steps li.is-active {
  color: var(--ink);
}

.registration-steps li.is-active b {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 8px 18px rgba(16, 168, 117, 0.2);
}

.registration-steps li.is-complete {
  color: #27876b;
}

.registration-steps li.is-complete b {
  color: #096b50;
  background: #d9f5ec;
}

.registration-progress {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6efed;
}

.registration-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 260ms ease;
}

.registration-panel {
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 38px 0 0;
}

.registration-panel[hidden],
.registration-actions[hidden],
.account-fields-personal[hidden],
.account-fields-business[hidden] {
  display: none !important;
}

.registration-panel-kicker {
  color: #087654;
  background: rgba(16, 168, 117, 0.08);
  border-color: rgba(16, 168, 117, 0.16);
}

.registration-panel h2 {
  margin: 12px 0 6px;
  font-size: 30px;
  line-height: 1.2;
}

.registration-panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.account-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.account-option {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  min-height: 124px;
  padding: 18px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdfd;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.account-option:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 168, 117, 0.36);
  box-shadow: 0 14px 30px rgba(19, 32, 43, 0.07);
}

.account-option.is-selected {
  border-color: rgba(16, 168, 117, 0.58);
  background: #f2fbf8;
  box-shadow: 0 14px 32px rgba(16, 168, 117, 0.11);
}

.account-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.account-option-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  color: #087654;
  background: #ddf6ee;
  font-weight: 950;
}

.account-option-copy strong,
.account-option-copy small {
  display: block;
}

.account-option-copy strong {
  margin-bottom: 5px;
  font-size: 17px;
}

.account-option-copy small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.account-option-check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: transparent;
  background: #e8efee;
  font-size: 12px;
  font-weight: 950;
}

.account-option.is-selected .account-option-check {
  color: #fff;
  background: var(--accent);
}

.registration-hint {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 16px;
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  background: #f4f9f8;
}

.registration-hint strong {
  font-size: 13px;
}

.registration-hint span {
  color: var(--muted);
  font-size: 12px;
}

.registration-fields {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.registration-fields.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.registration-fields label {
  display: block;
  min-width: 0;
  color: #394954;
  font-size: 12px;
  font-weight: 850;
}

.registration-fields label > span:first-child {
  display: block;
  margin-bottom: 7px;
}

.registration-field-wide {
  grid-column: 1 / -1;
}

.registration-fields input,
.registration-fields select {
  width: 100%;
  height: 46px;
  min-width: 0;
  padding: 0 13px;
  border: 1px solid #d6e2e1;
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.registration-fields input:focus,
.registration-fields select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(16, 168, 117, 0.1);
}

.registration-fields input.is-invalid,
.registration-fields select.is-invalid {
  border-color: #d75858;
  box-shadow: 0 0 0 3px rgba(215, 88, 88, 0.08);
}

.verification-field,
.password-field {
  position: relative;
  display: block;
}

.verification-field input {
  padding-right: 112px;
}

.verification-button,
.password-toggle {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  color: #087654;
  background: #e5f7f1;
  font-family: inherit;
  font-size: 11px;
  font-weight: 900;
}

.verification-button {
  min-width: 98px;
  padding: 0 10px;
}

.verification-button:disabled {
  cursor: default;
  color: #7a8b91;
  background: #edf2f2;
}

.password-field input {
  padding-right: 62px;
}

.password-toggle {
  width: 52px;
}

.field-help,
.field-error {
  display: block;
  min-height: 17px;
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.45;
}

.field-help {
  color: #819098;
  font-weight: 650;
}

.field-error {
  color: #bf3e3e;
  font-weight: 750;
}

.password-strength {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 6px;
}

.password-strength i {
  height: 3px;
  border-radius: 999px;
  background: #e3ecea;
}

.password-strength i.is-filled {
  background: var(--accent);
}

.registration-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid #dce9e6;
  border-radius: 12px;
  background: #f4faf8;
}

.registration-summary span {
  min-width: 0;
}

.registration-summary small,
.registration-summary strong {
  display: block;
}

.registration-summary small {
  color: var(--muted);
  font-size: 10px;
}

.registration-summary strong {
  overflow: hidden;
  margin-top: 2px;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.registration-summary button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(16, 168, 117, 0.2);
  border-radius: 9px;
  cursor: pointer;
  color: #087654;
  background: #fff;
  font-family: inherit;
  font-size: 11px;
  font-weight: 850;
}

.registration-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 20px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  line-height: 1.55;
}

.registration-consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.registration-consent a {
  color: var(--accent);
  font-weight: 850;
}

.consent-error {
  padding-left: 25px;
}

.registration-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #e5eded;
}

.registration-actions .btn {
  gap: 8px;
  min-width: 124px;
  cursor: pointer;
  font-family: inherit;
}

.registration-actions .btn:disabled {
  cursor: default;
  opacity: 0.48;
}

.registration-success {
  padding-top: 54px;
  text-align: center;
}

.registration-success-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(16, 168, 117, 0.22);
  font-size: 30px;
  font-weight: 950;
}

.registration-success > p {
  max-width: 520px;
  margin: 0 auto;
}

.registration-id-card {
  width: min(380px, 100%);
  margin: 26px auto 0;
  padding: 18px;
  border: 1px solid #d9e8e5;
  border-radius: 14px;
  background: #f3faf8;
}

.registration-id-card span,
.registration-id-card strong,
.registration-id-card small {
  display: block;
}

.registration-id-card span {
  color: var(--muted);
  font-size: 11px;
}

.registration-id-card strong {
  margin: 6px 0 3px;
  color: #087654;
  font-size: 28px;
  letter-spacing: 0;
}

.registration-id-card small {
  color: var(--muted);
}

.registration-success-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.registration-local-note {
  margin-top: 18px !important;
  font-size: 10px !important;
}

.registration-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 30;
  max-width: calc(100% - 32px);
  padding: 11px 16px;
  border-radius: 10px;
  color: #fff;
  background: #10242b;
  box-shadow: 0 16px 40px rgba(10, 24, 30, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 12px;
  font-weight: 750;
}

.registration-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1320px) and (min-width: 1121px) {
  .nav-inner {
    max-width: 1180px;
    gap: 8px;
    padding-right: 22px;
    padding-left: 22px;
  }
  .brand { min-width: 150px; gap: 9px; }
  .brand img { width: 38px; height: 38px; }
  .brand strong { font-size: 16px; }
  .brand span { font-size: 11px; }
  .links { gap: 2px; font-size: 13px; }
  .links a { padding-right: 8px; padding-left: 8px; }
  .locale-trigger { min-width: 84px; }
  .nav-inner > .btn.primary { padding-right: 12px; padding-left: 12px; font-size: 13px; }
}

@media (max-width: 1120px) and (min-width: 921px) {
  .nav-inner {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 10px 18px;
  }
  .brand { min-width: 170px; }
  .locale-controls { margin-left: auto; }
  .links {
    order: 4;
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: center;
    gap: 5px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .links::-webkit-scrollbar { display: none; }
  .links a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }
  .flow-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .links {
    order: 4;
    flex: 1 1 100%;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    padding-top: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .links::-webkit-scrollbar { display: none; }
  .links a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(220, 231, 231, 0.72);
    font-size: 13px;
  }
  .locale-controls { margin-left: auto; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .phone-card { display: none; }
  .proof, .grid, .grid.two, .download-grid, .metric-grid { grid-template-columns: 1fr 1fr; }
  .dark-band .section-head { grid-template-columns: 1fr; }
  .dark-band .section-head h2 { white-space: normal; }
  .story-grid, .download-hero, .test-matrix, .ops-layout, .history-head, .history-layout { grid-template-columns: 1fr; }
  .history-head {
    align-items: start;
    gap: 16px;
  }
  .history-head h2,
  .history-head p {
    max-width: 760px;
  }
  .history-head p {
    margin: 0;
    padding: 0;
    border-left: 0;
    font-size: 15px;
    line-height: 1.65;
  }
  .history-cards { grid-template-columns: 1fr 1fr; }
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .journey-row { grid-template-columns: 1fr; }
  .journey-detail { grid-template-columns: 1fr; }
  .advantage-head { display: block; }
  .advantage-head p {
    max-width: 760px;
    margin-top: 10px;
    padding: 0;
    border-left: 0;
  }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
}

@media (max-width: 620px) {
  .nav-inner { padding: 10px; }
  .nav { overflow: visible; }
  .nav-inner {
    max-width: 100%;
    gap: 6px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .brand {
    min-width: 0;
    flex: 1 1 auto;
    max-width: 130px;
    gap: 7px;
  }
  .brand img {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }
  .brand > span {
    display: block;
    min-width: 0;
  }
  .brand strong {
    font-size: 14px;
    line-height: 1.05;
  }
  .brand > span > span {
    display: -webkit-box;
    margin-top: 2px;
    max-width: 78px;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.15;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .locale-controls {
    flex: 0 0 auto;
    order: 1;
    justify-content: flex-end;
    gap: 5px;
    margin-left: auto;
    min-width: 0;
  }
  .locale-trigger {
    width: 90px;
    min-width: 90px;
    height: 34px;
    gap: 6px;
    padding: 0 8px;
    border-radius: 8px;
  }
  .locale-trigger svg {
    width: 17px;
    height: 17px;
  }
  .locale-trigger .locale-chevron {
    width: 13px;
    height: 13px;
  }
  .locale-current-code { font-size: 12px; }
  .locale-popover {
    top: calc(100% + 4px);
    width: 196px;
  }
  .nav-inner > .btn.primary {
    flex: 0 0 auto;
    order: 2;
    width: 86px;
    max-width: 86px;
    min-height: 36px;
    padding: 0 6px;
    border-radius: 10px;
    font-size: 10px;
    height: auto;
    overflow: visible;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }
  .links {
    gap: 6px;
    padding-top: 4px;
  }
  .mobile-link-strip {
    display: block;
    background: rgba(250, 253, 253, 0.96);
    border-bottom: 1px solid rgba(220, 231, 231, 0.72);
  }
  .mobile-link-inner {
    max-width: 100%;
    padding: 10px 16px;
    overflow: hidden;
  }
  .mobile-link-inner .links {
    padding-top: 0;
    padding-bottom: 0;
  }
  .links a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }
  .hero {
    overflow-x: hidden;
    background: var(--bg);
  }
  .hero-inner {
    width: 100%;
    max-width: 100%;
    padding: 58px 16px 48px;
    gap: 24px;
  }
  .hero-inner > div {
    min-width: 0;
    max-width: 100%;
  }
  .hero-title {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }
  html:not([lang="zh-CN"]) .page-hero h1 {
    font-size: 36px;
    line-height: 1.1;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .lead {
    max-width: 100%;
    font-size: 17px;
    overflow-wrap: anywhere;
  }
  .hero-actions,
  .proof {
    max-width: 100%;
  }
  .promo-video-section {
    padding: 48px 16px 44px;
  }
  .promo-video-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .promo-video-heading h2 {
    font-size: 30px;
    line-height: 1.18;
  }
  .promo-video-heading p {
    font-size: 15px;
  }
  .promo-video-sequence {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 18px 0 14px;
    border: 0;
  }
  .promo-video-sequence span:nth-child(3n) {
    border-right: 1px solid rgba(115, 211, 187, 0.2);
  }
  .promo-video-sequence span:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(115, 211, 187, 0.2);
  }
  .promo-video-sequence span {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 4px;
    min-height: 62px;
    padding: 7px 4px 10px;
    border: 1px solid rgba(115, 211, 187, 0.2);
    border-radius: 8px;
    background:
      radial-gradient(circle at 50% 0, color-mix(in srgb, var(--step-accent) 13%, transparent), transparent 58%),
      rgba(8, 27, 32, 0.66);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
    text-align: center;
    transition: transform 280ms ease, border-color 280ms ease, background-color 280ms ease, box-shadow 280ms ease;
  }
  .promo-video-sequence span::before {
    content: "";
    position: absolute;
    top: -30%;
    bottom: -30%;
    left: -42%;
    z-index: 0;
    width: 24%;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
  }
  .promo-video-sequence span::after {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 6px;
    left: 8px;
    z-index: 1;
    height: 2px;
    border-radius: 999px;
    background: var(--step-accent);
    box-shadow: 0 0 12px color-mix(in srgb, var(--step-accent) 58%, transparent);
    transform: scaleX(var(--step-progress));
    transform-origin: left center;
    transition: transform 140ms linear;
  }
  .promo-video-sequence span.is-active {
    z-index: 2;
    border-color: color-mix(in srgb, var(--step-accent) 68%, transparent);
    background:
      radial-gradient(circle at 50% 0, color-mix(in srgb, var(--step-accent) 24%, transparent), transparent 64%),
      rgba(11, 36, 42, 0.94);
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.24),
      0 0 0 1px color-mix(in srgb, var(--step-accent) 12%, transparent) inset;
    animation: promo-step-float 2.8s ease-in-out infinite;
  }
  .promo-video-sequence span.is-active::before {
    opacity: 1;
    animation: promo-step-sheen 2.8s ease-in-out infinite;
  }
  .promo-video-sequence span.is-complete:not(.is-active) {
    border-color: color-mix(in srgb, var(--step-accent) 34%, transparent);
  }
  .promo-video-sequence i {
    position: relative;
    width: 24px;
    height: 24px;
    font-size: 10px;
    box-shadow: 0 5px 14px color-mix(in srgb, var(--step-accent) 28%, transparent);
    transition: transform 260ms ease, box-shadow 260ms ease;
  }
  .promo-video-sequence i::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1px solid color-mix(in srgb, var(--step-accent) 52%, transparent);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.76);
  }
  .promo-video-sequence span.is-active i {
    box-shadow: 0 6px 20px color-mix(in srgb, var(--step-accent) 52%, transparent);
    animation: promo-step-icon-pulse 1.7s ease-out infinite;
  }
  .promo-video-sequence span.is-active i::after {
    animation: promo-step-ring 1.7s ease-out infinite;
  }
  .promo-video-sequence b {
    font-size: 10.5px;
    line-height: 1.2;
    transition: color 240ms ease, transform 240ms ease;
  }
  .promo-video-sequence span.is-active b {
    color: #fff;
    transform: translateY(-1px);
  }
  .promo-video-frame {
    border-radius: 6px;
  }
  .promo-video-note {
    font-size: 11px;
    line-height: 1.5;
  }
  .proof div {
    min-width: 0;
  }
  .ad-phone {
    display: block;
    width: min(330px, 100%);
    padding: 11px;
    order: 2;
    transform: none;
    border-radius: 34px;
    box-shadow: 0 24px 58px rgba(14, 26, 34, 0.22);
  }
  .ad-screen {
    min-height: 560px;
    padding: 24px 14px 14px;
    border-radius: 24px;
  }
  .ad-screen::before { inset: 13px; border-radius: 20px; }
  .ad-top {
    grid-template-columns: 42px 1fr;
    gap: 8px;
    margin: 0 6px 10px;
  }
  .ad-top img { width: 42px; height: 42px; border-radius: 13px; }
  .ad-top strong { font-size: 18px; }
  .ad-top span { font-size: 11px; }
  .ad-stage { min-height: 246px; border-radius: 18px; }
  .ad-slide { min-height: 246px; padding: 18px 18px 30px; }
  .ad-slide h3 { font-size: 23px; line-height: 1.18; }
  .ad-slide p { font-size: 13px; line-height: 1.48; }
  .ad-device-map b { padding: 12px 4px; border-radius: 12px; }
  .ad-wave { height: 68px; }
  .ad-reward { padding: 12px 16px; font-size: 26px; }
  .ad-settle b { font-size: 44px; }
  .ad-stats { gap: 7px; margin-top: 9px; }
  .ad-stats div { padding: 10px 6px; border-radius: 13px; }
  .ad-stats strong { font-size: 15px; }
  .ad-stats span { font-size: 10px; }
  .ad-timeline { gap: 5px; margin-top: 9px; }
  .ad-timeline span { min-height: 27px; font-size: 10px; }
  .ad-bottom { margin-top: 9px; padding: 13px; border-radius: 15px; }
  .ad-bottom strong { font-size: 16px; }
  .ad-mini-grid { margin-top: 10px; gap: 7px; }
  .ad-mini-grid div { padding: 9px; }
  .ad-mini-grid b { font-size: 15px; }
  .grid, .grid.two, .download-grid, .metric-grid { grid-template-columns: 1fr; }
  .proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .proof div {
    display: grid;
    align-content: center;
    min-height: 88px;
    padding: 13px 14px;
    border-radius: 14px;
  }
  .proof strong {
    white-space: nowrap;
    font-size: 18px;
    line-height: 1.2;
  }
  .proof span {
    margin-top: 6px;
    font-size: 12px;
  }
  .partner-logo { flex-basis: 148px; min-height: 86px; }
  .flow-steps, .ops-board { grid-template-columns: 1fr; }
  .stack-item, .check-row, .history-timeline, .history-timeline article { grid-template-columns: 1fr; }
  .history-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .history-cards div {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    align-content: start;
    gap: 10px;
    min-height: 130px;
    padding: 14px;
    border-radius: 15px;
  }
  .history-cards i {
    width: 34px;
    height: 34px;
    margin: 0;
    border-radius: 11px;
    font-size: 14px;
  }
  .history-cards strong {
    align-self: center;
    min-width: 0;
    margin: 0;
    font-size: 17px;
    line-height: 1.25;
  }
  .history-cards span {
    grid-column: 1 / -1;
    font-size: 12px;
    line-height: 1.55;
  }
  .history-layout { background-size: 360px auto; }
  .history-head {
    gap: 12px;
    margin-bottom: 20px;
  }
  .history-head h2 {
    margin-top: 0;
    font-size: 30px;
    line-height: 1.14;
    text-wrap: wrap;
  }
  .history-head p {
    font-size: 14px;
    line-height: 1.62;
  }
  .history-overlay { min-height: 220px; }
  section, .page-hero { padding-left: 16px; padding-right: 16px; }
  footer .foot-inner { display: block; }
}

@media (max-width: 390px) {
  .brand {
    max-width: 118px;
    gap: 6px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .brand strong { font-size: 13px; }
  .brand > span > span { font-size: 9px; }
  .locale-controls { gap: 4px; }
  .locale-trigger {
    width: 86px;
    min-width: 86px;
    height: 32px;
    padding: 0 7px;
  }
  .nav-inner > .btn.primary {
    width: 86px;
    max-width: 86px;
    min-height: 34px;
    padding: 0 6px;
    font-size: 10px;
  }
}

@media (max-width: 330px) {
  .brand { max-width: 110px; }
  .brand > span > span { display: none; }
}

@media (max-width: 920px) {
  .registration-page {
    padding: 28px 18px 54px;
  }
  .registration-shell {
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  }
  .registration-aside {
    padding: 26px;
  }
  .registration-aside-copy {
    margin-top: 54px;
  }
  .registration-shell > .registration-workspace {
    padding: 26px 28px 30px;
  }
  .registration-steps li {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 6px;
    font-size: 10px;
  }
  .registration-steps b {
    width: 26px;
    height: 26px;
  }
  .account-option {
    grid-template-columns: 40px minmax(0, 1fr) 22px;
    padding: 14px;
  }
}

@media (max-width: 760px) {
  .registration-page {
    padding: 18px 14px 44px;
  }
  .registration-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 16px;
  }
  .registration-aside {
    min-height: 250px;
    padding: 22px;
  }
  .registration-aside-copy {
    margin-top: 30px;
  }
  .registration-aside h1 {
    max-width: 480px;
    margin: 12px 0 8px;
    font-size: 30px;
  }
  .registration-aside-copy p {
    max-width: 560px;
  }
  .registration-benefits {
    display: none;
  }
  .registration-aside-note {
    margin-top: 24px;
  }
  .registration-shell > .registration-workspace {
    padding: 22px 20px 26px;
  }
}

@media (max-width: 620px) {
  .registration-shell > .registration-workspace,
  .registration-panel {
    max-width: none;
    margin: 0;
  }
  .registration-panel {
    padding: 28px 0 0;
  }
  .registration-panel h2 {
    font-size: 25px;
  }
  .registration-steps {
    gap: 3px;
    margin-top: 22px;
  }
  .registration-steps li {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    text-align: center;
    font-size: 9px;
    line-height: 1.25;
  }
  .registration-steps b {
    width: 25px;
    height: 25px;
    border-radius: 8px;
  }
  .account-type-grid,
  .registration-fields.two-columns {
    grid-template-columns: 1fr;
  }
  .account-type-grid {
    gap: 10px;
    margin-top: 22px;
  }
  .account-option {
    min-height: 96px;
  }
  .registration-hint {
    grid-template-columns: 1fr;
  }
  .registration-field-wide {
    grid-column: auto;
  }
  .registration-summary {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .registration-summary button {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .registration-actions {
    margin-top: 26px;
  }
  .registration-actions .btn {
    min-width: 0;
  }
  #registrationNextButton {
    flex: 1 1 auto;
  }
}

@media (max-width: 430px) {
  .registration-page {
    padding: 12px 10px 34px;
  }
  .registration-aside {
    min-height: 228px;
    padding: 18px;
  }
  .registration-brand img {
    width: 42px;
    height: 42px;
  }
  .registration-aside-copy {
    margin-top: 24px;
  }
  .registration-aside h1 {
    font-size: 27px;
  }
  .registration-aside-note {
    margin-top: 18px;
  }
  .registration-shell > .registration-workspace {
    padding: 18px 16px 22px;
  }
  .registration-workspace-head {
    align-items: flex-start;
  }
  .registration-step-count {
    font-size: 10px;
  }
  .registration-steps span {
    max-width: 58px;
  }
  .verification-field input {
    padding-right: 104px;
  }
  .verification-button {
    min-width: 92px;
    padding: 0 7px;
    font-size: 10px;
  }
  .registration-success-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Account system */
.account-page {
  min-height: calc(100vh - 71px);
  padding: 34px 22px 54px;
  background:
    linear-gradient(rgba(243, 247, 247, 0.9), rgba(243, 247, 247, 0.98)),
    url("assets/panda-cloud-login.png") center / cover fixed;
}

.account-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  width: min(1080px, 100%);
  min-height: 660px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(199, 216, 215, 0.88);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.account-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 34px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(12, 27, 36, 0.98), rgba(13, 56, 58, 0.93)),
    url("assets/panda-cloud-login.png") center / cover;
}

.account-aside::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -150px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(74, 233, 194, 0.24);
  border-radius: 50%;
}

.account-aside-brand,
.account-aside-copy,
.account-security-points,
.account-aside-foot {
  position: relative;
  z-index: 1;
}

.account-aside-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.account-aside-brand img {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #fff;
}

.account-aside-brand strong,
.account-aside-brand span {
  display: block;
}

.account-aside-brand strong {
  font-size: 17px;
}

.account-aside-brand span {
  color: #b9d0d1;
  font-size: 11px;
}

.account-aside-copy {
  margin-top: 72px;
}

.account-aside-copy > span {
  color: #62dfbd;
  font-size: 10px;
  font-weight: 900;
}

.account-aside-copy h1 {
  max-width: 340px;
  margin: 11px 0 12px;
  font-size: 34px;
  line-height: 1.17;
  letter-spacing: 0;
}

.account-aside-copy p {
  max-width: 360px;
  margin: 0;
  color: #bed0d2;
  font-size: 13px;
}

.account-security-points {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

.account-security-points > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border: 1px solid rgba(197, 239, 229, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.account-security-points b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  color: #06251d;
  background: #64dfbd;
  font-size: 11px;
}

.account-security-points strong,
.account-security-points small {
  display: block;
}

.account-security-points strong {
  font-size: 12px;
}

.account-security-points small {
  color: #9eb9bb;
  font-size: 10px;
}

.account-aside-foot {
  margin: auto 0 0;
  padding-top: 24px;
  color: #8faeb0;
  font-size: 10px;
}

.account-workspace {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 30px 34px 36px;
  background: #fbfdfd;
}

#authAccessView {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.account-service-state {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 25px;
  padding: 7px 11px;
  border: 1px solid #dbe7e6;
  border-radius: 7px;
  color: #61727b;
  background: #f3f8f7;
  font-size: 10px;
  font-weight: 750;
}

.account-service-state i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f0b84e;
  box-shadow: 0 0 0 4px rgba(240, 184, 78, 0.12);
}

.account-service-state.is-ready {
  color: #14775d;
  border-color: #cce9df;
  background: #effaf6;
}

.account-service-state.is-ready i {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(16, 168, 117, 0.12);
}

.account-service-state.is-error {
  color: #a23b3b;
  border-color: #efd1d1;
  background: #fff5f5;
}

.account-service-state.is-error i {
  background: #d75858;
  box-shadow: 0 0 0 4px rgba(215, 88, 88, 0.1);
}

.account-heading {
  max-width: 540px;
}

.account-heading > span,
.account-panel-head span {
  color: #07825e;
  font-size: 10px;
  font-weight: 950;
}

.account-heading h2 {
  margin: 8px 0 6px;
  font-size: 28px;
  line-height: 1.2;
}

.account-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.auth-mode-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 520px;
  margin-top: 25px;
  padding: 4px;
  border: 1px solid #dce8e6;
  border-radius: 8px;
  background: #edf4f3;
}

.auth-mode-tabs button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  color: #64727a;
  background: transparent;
  font-family: inherit;
  font-size: 12px;
  font-weight: 850;
}

.auth-mode-tabs button.is-active {
  color: #087654;
  background: #fff;
  box-shadow: 0 4px 14px rgba(26, 50, 54, 0.08);
}

.auth-access-form {
  display: grid;
  gap: 15px;
  max-width: 520px;
  margin-top: 24px;
}

.auth-access-form[hidden],
#authAccessView[hidden],
.account-dashboard[hidden],
.mfa-code-row[hidden] {
  display: none !important;
}

.auth-access-form label {
  display: grid;
  gap: 6px;
  color: #3b4b55;
  font-size: 11px;
  font-weight: 850;
}

.auth-access-form input,
.account-security-grid input {
  width: 100%;
  height: 46px;
  min-width: 0;
  padding: 0 13px;
  border: 1px solid #d6e2e1;
  border-radius: 8px;
  outline: none;
  color: var(--ink);
  background: #fff;
  font-family: inherit;
  font-size: 13px;
}

.auth-access-form input:focus,
.account-security-grid input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(16, 168, 117, 0.1);
}

.auth-access-form .password-toggle {
  top: 5px;
}

.account-submit {
  width: 100%;
  min-height: 44px;
  cursor: pointer;
  border: 1px solid rgba(16, 168, 117, 0.3);
  font-family: inherit;
}

.account-submit:disabled,
.account-security-grid button:disabled {
  cursor: default;
  opacity: 0.58;
}

.account-form-message {
  min-height: 18px;
  margin: -4px 0 0;
  color: #b34242;
  font-size: 11px;
}

.account-form-message.is-positive,
.account-inline-message.is-positive {
  color: #087654;
}

.account-form-foot {
  margin: 0 !important;
  color: var(--muted);
  text-align: center;
  font-size: 11px !important;
}

.account-form-foot a,
.account-text-button {
  color: #07825e;
  font-weight: 850;
}

.account-text-button {
  justify-self: center;
  border: 0;
  cursor: pointer;
  background: transparent;
  font-family: inherit;
  font-size: 11px;
}

.account-verification-intro {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  border-left: 3px solid var(--accent);
  border-radius: 7px;
  background: #eef9f5;
}

.account-verification-intro b {
  font-size: 13px;
}

.account-verification-intro span {
  color: var(--muted);
  font-size: 11px;
}

#recoveryResetFields {
  display: grid;
  gap: 15px;
  padding-top: 3px;
}

#recoveryResetFields[hidden] {
  display: none;
}

.account-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.account-identity {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 13px;
}

.account-identity img {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border: 4px solid #e3f5ef;
  border-radius: 14px;
}

.account-identity span,
.account-identity p {
  color: var(--muted);
  font-size: 10px;
}

.account-identity h2 {
  margin: 0;
  overflow: hidden;
  font-size: 22px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-identity p {
  margin: 2px 0 0;
}

.account-identity p strong {
  color: #14775d;
}

.account-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 24px;
}

.account-overview > div {
  min-width: 0;
  padding: 12px;
  border: 1px solid #dde8e7;
  border-radius: 8px;
  background: #fff;
}

.account-overview span,
.account-overview strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.account-overview strong {
  margin-top: 4px;
  font-size: 12px;
}

.account-overview strong.is-positive {
  color: #087654;
}

.account-panel {
  width: 100%;
  max-width: none;
  margin: 16px 0 0;
  padding: 17px;
  border: 1px solid #dce7e6;
  border-radius: 8px;
  background: #fff;
}

.account-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8efee;
}

.account-panel-head h3 {
  margin: 0;
  font-size: 16px;
}

.account-panel-head em {
  color: #21856a;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.account-security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 14px;
}

.account-security-grid form {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 13px;
  border-radius: 8px;
  background: #f3f8f7;
}

.account-security-grid h4 {
  margin: 0;
  font-size: 13px;
}

.account-security-grid p {
  min-height: 34px;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 10px;
}

.account-security-grid input {
  height: 38px;
  font-size: 11px;
}

.account-security-grid .btn {
  min-height: 36px;
  cursor: pointer;
  border: 1px solid rgba(16, 168, 117, 0.25);
  font-family: inherit;
  font-size: 11px;
}

.account-inline-message {
  min-height: 16px;
  color: #b34242;
  font-size: 9px;
}

.account-session-list {
  display: grid;
  gap: 8px;
  padding-top: 12px;
}

.account-session-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 10px;
  border-radius: 8px;
  background: #f5f9f8;
}

.account-session-row > i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 34px;
  border-radius: 7px;
  color: #087654;
  background: #ddf5ed;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.account-session-row strong,
.account-session-row span {
  display: block;
}

.account-session-row strong {
  font-size: 11px;
}

.account-session-row span {
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-session-row button {
  min-width: 60px;
  min-height: 32px;
  border: 1px solid #d7e4e2;
  border-radius: 7px;
  cursor: pointer;
  color: #52636c;
  background: #fff;
  font-family: inherit;
  font-size: 9px;
  font-weight: 800;
}

@media (max-width: 920px) {
  .account-nav .links {
    display: none;
  }
  .account-shell {
    grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  }
  .account-aside {
    padding: 26px;
  }
  .account-aside-copy {
    margin-top: 54px;
  }
  .account-aside-copy h1 {
    font-size: 28px;
  }
  .account-workspace {
    padding: 26px;
  }
  .account-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .account-page {
    padding: 14px 10px 34px;
  }
  .account-shell {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  .account-aside {
    min-height: 218px;
    padding: 20px;
  }
  .account-aside-copy {
    margin-top: 26px;
  }
  .account-aside-copy h1 {
    max-width: 500px;
    margin: 7px 0 5px;
    font-size: 25px;
  }
  .account-aside-copy p {
    max-width: 560px;
  }
  .account-security-points,
  .account-aside-foot {
    display: none;
  }
  .account-workspace {
    padding: 20px 18px 24px;
  }
  .account-service-state {
    margin-bottom: 20px;
  }
  .account-heading h2 {
    font-size: 24px;
  }
  .account-dashboard-head {
    align-items: flex-start;
  }
  .account-dashboard-head > .btn {
    min-width: 86px;
    padding: 0 10px;
  }
  .account-security-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .account-nav .nav-inner {
    gap: 10px;
  }
  .account-nav .brand {
    min-width: 0;
  }
  .account-nav .brand span span {
    display: none;
  }
  .account-nav .btn {
    min-width: 90px;
    padding: 0 12px;
  }
  .account-aside {
    min-height: 205px;
  }
  .account-aside-copy h1 {
    font-size: 23px;
  }
  .account-aside-copy p {
    font-size: 11px;
  }
  .account-overview {
    grid-template-columns: 1fr 1fr;
  }
  .account-panel {
    padding: 14px;
  }
  .account-panel-head {
    align-items: flex-start;
  }
  .account-panel-head em {
    max-width: 120px;
    text-align: right;
  }
  .account-session-row {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px;
  }
  .account-session-row > i {
    width: 34px;
  }
  .account-session-row button {
    min-width: 50px;
  }
  .registration-success-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulse-switch {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 168, 117, 0.18); }
  50% { box-shadow: 0 0 0 12px rgba(16, 168, 117, 0.08); }
}

@keyframes data-flow {
  from { transform: translateX(-100%); }
  to { transform: translateX(230%); }
}

@keyframes rotate-orbit {
  to { transform: rotate(360deg); }
}

@keyframes grow-line {
  0%, 100% { transform: scaleX(0.28); opacity: 0.56; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}

@keyframes hero-cta-pulse {
  0%, 100% { box-shadow: 0 18px 38px rgba(12, 158, 117, 0.3), 0 4px 10px rgba(14, 26, 34, 0.12); }
  50% { box-shadow: 0 21px 44px rgba(12, 158, 117, 0.4), 0 5px 12px rgba(14, 26, 34, 0.14); }
}

@keyframes hero-cta-shine {
  0%, 62% { left: -38%; opacity: 0; }
  68% { opacity: 0.72; }
  86%, 100% { left: 122%; opacity: 0; }
}

@keyframes hero-download-arrow {
  0%, 100% { transform: translateY(-1px); }
  50% { transform: translateY(2px); }
}

@keyframes ad-slide {
  0% { opacity: 0; transform: translateY(14px) scale(0.985); }
  5%, 17% { opacity: 1; transform: translateY(0) scale(1); }
  21%, 100% { opacity: 0; transform: translateY(-10px) scale(0.995); }
}

@keyframes ad-stage-progress {
  0% { transform: scaleX(0); }
  88%, 100% { transform: scaleX(1); }
}

@keyframes ad-live-dot {
  0% { box-shadow: 0 0 0 0 rgba(89, 228, 190, 0.42); }
  72%, 100% { box-shadow: 0 0 0 7px rgba(89, 228, 190, 0); }
}

@keyframes pop-node {
  0%, 100% { box-shadow: 0 0 0 rgba(34, 211, 182, 0); transform: translateY(0); }
  50% { box-shadow: 0 8px 22px rgba(34, 211, 182, 0.24); transform: translateY(-3px); }
}

@keyframes reward-pop {
  0%, 100% { box-shadow: 0 0 0 rgba(247, 213, 106, 0); transform: scale(1); }
  50% { box-shadow: 0 10px 28px rgba(247, 213, 106, 0.28); transform: scale(1.025); }
}

@keyframes health-fill {
  0%, 100% { filter: brightness(1); transform: scaleX(0.84); }
  50% { filter: brightness(1.35); transform: scaleX(1); }
}

@keyframes history-slide {
  0%, 22% { opacity: 1; transform: translateY(0); }
  28%, 100% { opacity: 0; transform: translateY(-14px); }
}

@keyframes history-slide-mobile {
  0%, 22% { opacity: 1; transform: none; }
  28%, 100% { opacity: 0; transform: none; }
}

@keyframes history-dot {
  0%, 22% { background: linear-gradient(90deg, var(--accent), var(--accent-2)); transform: scaleX(1.35); }
  28%, 100% { background: rgba(255, 255, 255, 0.24); transform: scaleX(1); }
}

@keyframes timeline-glow {
  0%, 18%, 100% { color: #53636f; background: rgba(16, 168, 117, 0.08); }
  5%, 15% { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
}

/* Logged-in user center */
.user-center-body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(16, 168, 117, 0.05), transparent 300px),
    #edf3f3;
}

.user-center-nav .nav-inner {
  max-width: 1240px;
}

.user-center-page {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 64px;
}

.user-center-page > .user-center-head,
.user-center-page > .user-balance-grid,
.user-center-page > .user-resource-strip {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}

.user-center-head,
.user-center-identity,
.user-center-head-actions,
.user-button-row,
.user-ledger-head,
.user-device-top,
.user-emergency-state,
.user-request-item > div {
  display: flex;
  align-items: center;
}

.user-center-head {
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.user-center-identity {
  min-width: 0;
  gap: 14px;
}

.user-center-identity img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border: 1px solid rgba(16, 168, 117, 0.18);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(19, 32, 43, 0.1);
}

.user-center-identity span,
.user-center-identity p {
  color: var(--muted);
  font-size: 12px;
}

.user-center-identity h1 {
  margin: 1px 0 0;
  font-size: 25px;
  line-height: 1.2;
}

.user-center-identity p {
  margin: 3px 0 0;
}

.user-center-head-actions {
  gap: 10px;
}

.dashboard-service-state {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #cce9df;
  border-radius: 8px;
  color: #087654;
  background: #e7f6f1;
  font-size: 12px;
  font-weight: 850;
}

.dashboard-service-state.is-loading {
  color: #536a78;
  border-color: #d8e4e7;
  background: #f4f7f8;
}

.dashboard-service-state.is-error {
  color: #9b4545;
  border-color: #efd0d0;
  background: #fff1f1;
}

.user-balance-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.user-balance-grid > div {
  min-width: 0;
  min-height: 126px;
  padding: 20px;
  border: 1px solid #dce6e6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(19, 32, 43, 0.06);
}

.user-balance-grid > div:nth-child(2) {
  border-top: 3px solid var(--blue);
}

.user-balance-grid > div:nth-child(3) {
  border-top: 3px solid var(--amber);
}

.user-balance-grid > div:nth-child(4) {
  border-top: 3px solid var(--accent);
}

.user-balance-grid .user-balance-primary {
  color: #fff;
  border-color: #142a34;
  background:
    linear-gradient(135deg, rgba(34, 211, 182, 0.13), transparent 60%),
    #11212b;
}

.user-balance-grid span,
.user-balance-grid strong,
.user-balance-grid small {
  display: block;
}

.user-balance-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.user-balance-grid strong {
  overflow-wrap: anywhere;
  margin-top: 9px;
  font-size: 26px;
  line-height: 1.2;
}

.user-balance-grid small {
  margin-top: 8px;
  color: #87939d;
  font-size: 11px;
}

.user-balance-grid .user-balance-primary span,
.user-balance-grid .user-balance-primary small {
  color: #a9c2bf;
}

.user-balance-grid .user-balance-primary strong {
  color: #fff;
  font-size: 34px;
}

.user-resource-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 12px 0 22px;
  border: 1px solid #dce6e6;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.user-resource-strip > div {
  min-width: 0;
  padding: 14px 17px;
}

.user-resource-strip > div + div {
  border-left: 1px solid #e1e9e9;
}

.user-resource-strip span,
.user-resource-strip strong {
  display: block;
}

.user-resource-strip span {
  color: var(--muted);
  font-size: 11px;
}

.user-resource-strip strong {
  overflow-wrap: anywhere;
  margin-top: 3px;
  font-size: 17px;
}

.user-center-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 4px;
  border: 1px solid #d6e2e2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  overflow-x: auto;
}

.user-center-tabs button {
  min-height: 38px;
  padding: 0 17px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  color: #596874;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.user-center-tabs button.is-active {
  color: #fff;
  background: #11212b;
  box-shadow: 0 6px 14px rgba(17, 33, 43, 0.16);
}

.user-center-panel {
  min-height: 360px;
  padding: 26px;
  border: 1px solid #dce6e6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(19, 32, 43, 0.07);
}

.user-center-panel[hidden] {
  display: none;
}

.user-center-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.user-center-section-head span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
}

.user-center-section-head h2 {
  margin: 2px 0 0;
  font-size: 22px;
  line-height: 1.25;
}

.user-center-section-head > a,
.user-center-section-head > em {
  color: #477066;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.user-center-subhead {
  margin-top: 28px;
}

.user-overview-layout,
.user-safety-layout,
.user-request-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.user-surface,
.user-ledger-item,
.user-device-item,
.user-request-item,
.user-empty-state {
  border: 1px solid #dfe8e8;
  border-radius: 8px;
  background: #f8fbfa;
}

.user-surface {
  padding: 20px;
}

.user-surface h3 {
  margin: 0 0 13px;
  font-size: 17px;
}

.user-definition-list {
  margin: 0;
}

.user-definition-list > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(0, 1.3fr);
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #e1e9e8;
}

.user-definition-list > div:last-child {
  border-bottom: 0;
}

.user-definition-list dt {
  color: var(--muted);
  font-size: 12px;
}

.user-definition-list dd {
  margin: 0;
  text-align: right;
  font-size: 12px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.user-payout-form,
.user-device-policy,
.user-request-layout form {
  display: grid;
  gap: 12px;
}

.user-center-page label > span,
.user-device-policy label > span {
  display: block;
  margin-bottom: 5px;
  color: #53636e;
  font-size: 11px;
  font-weight: 800;
}

.user-center-page input,
.user-center-page select,
.user-center-page textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #cfdddd;
  border-radius: 7px;
  padding: 9px 11px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 12px;
}

.user-center-page textarea {
  resize: vertical;
}

.user-center-page input:focus,
.user-center-page select:focus,
.user-center-page textarea:focus {
  outline: 2px solid rgba(16, 168, 117, 0.18);
  border-color: var(--accent);
}

.user-form-message {
  min-height: 20px;
  margin: 0;
  color: #587067;
  font-size: 11px;
}

.user-panel-note {
  margin: -5px 0 18px;
  color: var(--muted);
  font-size: 12px;
}

.user-ledger-list,
.user-device-list,
.user-request-list {
  display: grid;
  gap: 10px;
}

.user-ledger-item,
.user-device-item,
.user-request-item {
  padding: 17px;
}

.user-ledger-head,
.user-device-top,
.user-request-item > div {
  justify-content: space-between;
  gap: 16px;
}

.user-ledger-head strong,
.user-ledger-head span,
.user-device-top strong,
.user-device-top span {
  display: block;
}

.user-ledger-head > div:last-child {
  text-align: right;
}

.user-ledger-head span,
.user-device-top span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  overflow-wrap: anywhere;
}

.ledger-status,
.device-status,
.user-request-item em {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-top: 4px;
  padding: 0 8px;
  border-radius: 999px;
  color: #596874;
  background: #e9eeee;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.ledger-status.is-estimated {
  color: #2466bb;
  background: #e5efff;
}

.ledger-status.is-pending {
  color: #8a621d;
  background: #fff2d8;
}

.ledger-status.is-settled,
.device-status.is-online {
  color: #087654;
  background: #def5ed;
}

.device-status.is-paused,
.device-status.is-emergency_stopped,
.device-status.is-blocked {
  color: #a04444;
  background: #fde8e8;
}

.user-ledger-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin: 14px 0 0;
}

.user-ledger-meta > div {
  min-width: 0;
  padding: 9px;
  border-radius: 6px;
  background: #fff;
}

.user-ledger-meta dt,
.user-ledger-meta dd {
  overflow-wrap: anywhere;
}

.user-ledger-meta dt {
  color: var(--muted);
  font-size: 9px;
}

.user-ledger-meta dd {
  margin: 3px 0 0;
  font-size: 10px;
  font-weight: 800;
}

.user-ledger-formula {
  margin: 10px 0 0;
  padding: 9px 11px;
  border-left: 3px solid var(--accent);
  color: #48655d;
  background: #eaf6f2;
  font-size: 10px;
  overflow-wrap: anywhere;
}

.user-inline-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}

.user-inline-filter select {
  width: 118px;
}

.user-device-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 12px;
}

.user-device-metrics > div {
  min-width: 0;
  padding: 10px;
  border-radius: 6px;
  background: #fff;
}

.user-device-metrics span,
.user-device-metrics strong {
  display: block;
}

.user-device-metrics span {
  color: var(--muted);
  font-size: 9px;
}

.user-device-metrics strong {
  margin-top: 2px;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.user-button-row {
  flex-wrap: wrap;
  gap: 8px;
}

.user-button-row .btn {
  min-height: 36px;
  padding: 0 13px;
  font-size: 11px;
}

.user-device-policy {
  grid-template-columns: minmax(90px, 0.6fr) repeat(3, minmax(115px, 1fr)) auto;
  align-items: end;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #dfe8e8;
}

.user-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-check input {
  width: 17px;
  min-height: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.user-check > span {
  margin: 0 !important;
}

.user-emergency-panel {
  color: #fff;
  border-color: #172c36;
  background: #11212b;
}

.user-emergency-panel p,
.user-emergency-panel small {
  color: #abc1be;
}

.user-emergency-state {
  gap: 9px;
  margin: 20px 0 14px;
}

.user-emergency-state i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.user-emergency-state i.is-running {
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(16, 168, 117, 0.15);
}

.user-emergency-state i.is-stopped {
  background: #f36b6b;
  box-shadow: 0 0 0 7px rgba(243, 107, 107, 0.15);
}

.user-request-item > div em {
  margin: 0;
}

.user-request-item p {
  margin: 8px 0;
  color: #52636e;
  font-size: 12px;
}

.user-request-item small {
  color: #819097;
  font-size: 10px;
  overflow-wrap: anywhere;
}

.user-empty-state {
  margin: 0;
  padding: 22px;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

/* Trust center */
.trust-hero {
  max-width: none;
  min-height: 390px;
  margin: 0;
  padding: 82px max(22px, calc((100% - 1136px) / 2)) 54px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 26, 34, 0.96), rgba(10, 26, 34, 0.78)),
    url("assets/panda-cloud-login.png") center 42% / cover no-repeat;
}

.trust-hero h1 {
  max-width: 820px;
  margin: 9px 0 15px;
  font-size: 44px;
  line-height: 1.14;
}

.trust-hero p {
  max-width: 780px;
  color: #bfd0ce;
  font-size: 16px;
}

.trust-live-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.trust-live-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(128, 222, 194, 0.25);
  border-radius: 8px;
  color: #d9f3eb;
  background: rgba(12, 48, 54, 0.7);
  font-size: 11px;
  font-weight: 850;
}

.trust-live-row i {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--accent-2);
}

.trust-live-row .is-error {
  color: #ffd9b0;
  border-color: rgba(240, 184, 78, 0.34);
}

.trust-principles,
.trust-data-section,
.trust-settlement,
.trust-safety,
.trust-download,
.trust-brand {
  width: min(1136px, calc(100% - 44px));
  margin: 0 auto;
}

.trust-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 42px 0;
}

.trust-principles article {
  min-width: 0;
  padding: 21px;
  border: 1px solid #dce7e7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(19, 32, 43, 0.06);
}

.trust-principles article:nth-child(2) {
  border-top: 3px solid var(--blue);
}

.trust-principles article:nth-child(3) {
  border-top: 3px solid var(--amber);
}

.trust-principles article:nth-child(4) {
  border-top: 3px solid #374b5a;
}

.trust-principles b {
  color: var(--accent);
  font-size: 11px;
}

.trust-principles h2 {
  margin: 8px 0 7px;
  font-size: 18px;
}

.trust-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.trust-data-section,
.trust-settlement,
.trust-safety,
.trust-download,
.trust-brand {
  padding: 38px 0;
  border-top: 1px solid #dce6e6;
}

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

.trust-data-grid article {
  padding: 23px;
  border-radius: 8px;
}

.trust-data-grid h3 {
  margin: 0 0 13px;
}

.trust-data-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-data-grid li {
  position: relative;
  padding-left: 22px;
  color: #52636e;
  font-size: 12px;
}

.trust-data-grid li::before {
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: 900;
}

.trust-data-positive {
  border: 1px solid #cfe8df;
  background: #f0faf6;
}

.trust-data-positive li::before {
  content: "✓";
  color: var(--accent);
}

.trust-data-negative {
  border: 1px solid #e1e5e9;
  background: #f6f8f9;
}

.trust-data-negative li::before {
  content: "—";
  color: #7d8c95;
}

.trust-state-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #d8e4e4;
  border-radius: 8px;
  background: #fff;
}

.trust-state-flow article {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 4px 12px;
  padding: 23px;
}

.trust-state-flow article + article {
  border-left: 1px solid #dfe8e8;
}

.trust-state-flow i {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: #132a35;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.trust-state-flow article:nth-child(2) i {
  color: #4c3510;
  background: #f2c35f;
}

.trust-state-flow article:nth-child(3) i {
  background: var(--accent);
}

.trust-state-flow strong {
  font-size: 14px;
}

.trust-state-flow span {
  color: var(--muted);
  font-size: 11px;
}

.trust-safety {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
}

.trust-safety-copy {
  padding: 27px;
  border-radius: 8px;
  color: #fff;
  background: #11212b;
}

.trust-safety-copy h2 {
  margin: 7px 0 10px;
  font-size: 25px;
}

.trust-safety-copy p {
  color: #adc2bf;
  font-size: 12px;
}

.trust-safety-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.trust-safety-list > div {
  padding: 18px;
  border: 1px solid #dce6e6;
  border-radius: 8px;
  background: #fff;
}

.trust-safety-list strong,
.trust-safety-list span {
  display: block;
}

.trust-safety-list strong {
  font-size: 14px;
}

.trust-safety-list span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.trust-download {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.3fr) auto;
  align-items: center;
  gap: 24px;
}

.trust-download h2 {
  margin: 7px 0 8px;
  font-size: 24px;
}

.trust-download p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.trust-release-data,
.download-release-meta {
  margin: 0;
}

.trust-release-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.trust-release-data > div,
.download-release-meta > div {
  min-width: 0;
  padding: 10px;
  border-radius: 6px;
  background: #eef4f3;
}

.trust-release-data dt,
.download-release-meta dt {
  color: var(--muted);
  font-size: 9px;
}

.trust-release-data dd,
.download-release-meta dd {
  margin: 3px 0 0;
  font-size: 11px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.trust-release-data .trust-hash {
  grid-column: 1 / -1;
}

.trust-brand {
  margin-bottom: 42px;
  padding: 28px;
  border: 1px solid #dce6e6;
  border-radius: 8px;
  background: #fff;
}

.trust-brand h2 {
  margin: 7px 0 8px;
}

.trust-brand p {
  max-width: 970px;
  color: var(--muted);
  font-size: 12px;
}

.trust-brand > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.trust-brand a {
  padding: 7px 10px;
  border: 1px solid #d7e4e2;
  border-radius: 7px;
  color: #087654;
  font-size: 11px;
  font-weight: 850;
}

/* Reliable download metadata */
.download-release-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 17px;
}

.download-release-meta > div:last-child {
  grid-column: 1 / -1;
}

.download-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.download-card {
  border-radius: 8px;
}

@media (max-width: 1000px) {
  .user-balance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .user-device-policy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .user-device-policy .user-check,
  .user-device-policy button {
    align-self: center;
  }

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

  .trust-download {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .trust-download > .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .user-center-page {
    width: min(100% - 24px, 1200px);
    padding: 22px 0 42px;
  }

  .user-center-nav .links {
    display: none;
  }

  .user-center-head {
    align-items: flex-start;
  }

  .user-center-head-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-service-state {
    justify-content: center;
  }

  .user-balance-grid,
  .user-overview-layout,
  .user-safety-layout,
  .user-request-layout,
  .trust-data-grid,
  .trust-safety,
  .trust-download {
    grid-template-columns: 1fr;
  }

  .user-balance-grid > div {
    min-height: 108px;
  }

  .user-resource-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .user-resource-strip > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #e1e9e9;
  }

  .user-resource-strip > div:nth-child(4) {
    border-top: 1px solid #e1e9e9;
  }

  .user-center-panel {
    min-height: 0;
    padding: 18px;
  }

  .user-ledger-meta,
  .user-device-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .user-device-policy {
    grid-template-columns: 1fr 1fr;
  }

  .trust-hero {
    min-height: 330px;
    padding: 54px 22px 40px;
  }

  .trust-hero h1 {
    font-size: 34px;
  }

  .trust-principles,
  .trust-data-section,
  .trust-settlement,
  .trust-safety,
  .trust-download,
  .trust-brand {
    width: min(100% - 28px, 1136px);
  }

  .trust-state-flow {
    grid-template-columns: 1fr;
  }

  .trust-state-flow article + article {
    border-top: 1px solid #dfe8e8;
    border-left: 0;
  }

  .trust-download > .btn {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .user-center-nav .brand > span > span {
    display: none;
  }

  .user-center-head {
    display: grid;
    gap: 14px;
  }

  .user-center-head-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .user-center-identity img {
    width: 46px;
    height: 46px;
  }

  .user-center-identity h1 {
    font-size: 21px;
  }

  .user-balance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .user-balance-grid > div {
    min-height: 100px;
    padding: 14px;
  }

  .user-balance-grid strong {
    font-size: 20px;
  }

  .user-balance-grid .user-balance-primary strong {
    font-size: 25px;
  }

  .user-center-tabs {
    width: 100%;
  }

  .user-center-tabs button {
    flex: 1 0 auto;
    padding: 0 12px;
  }

  .user-center-section-head {
    align-items: flex-start;
  }

  .user-center-section-head h2 {
    font-size: 19px;
  }

  .user-definition-list > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .user-definition-list dd {
    text-align: left;
  }

  .user-ledger-head,
  .user-device-top {
    align-items: flex-start;
  }

  .user-ledger-meta {
    grid-template-columns: 1fr;
  }

  .user-device-policy {
    grid-template-columns: 1fr;
  }

  .user-device-policy button {
    width: 100%;
  }

  .trust-hero h1 {
    font-size: 29px;
  }

  .trust-hero p {
    font-size: 13px;
  }

  .trust-principles {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .trust-safety-list,
  .trust-release-data,
  .download-release-meta {
    grid-template-columns: 1fr;
  }

  .trust-release-data .trust-hash,
  .download-release-meta > div:last-child {
    grid-column: auto;
  }

  .trust-brand {
    padding: 20px;
  }
}

@media (max-width: 620px) {
  .mobile-link-inner {
    overflow: visible;
  }

  .mobile-link-inner .links {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .mobile-link-inner .links a {
    flex: 1 1 auto;
  }
}

/* Compute business model page */
.compute-mode-page {
  overflow: hidden;
}

.mode-hero {
  position: relative;
  padding-top: 88px;
  padding-bottom: 54px;
}

.mode-hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -110px;
  top: -150px;
  border: 1px solid rgba(16, 168, 117, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(16, 168, 117, 0.035),
    0 0 0 108px rgba(54, 124, 246, 0.025);
  pointer-events: none;
}

.mode-hero h1 {
  position: relative;
  max-width: 880px;
  margin: 0 0 18px;
  font-size: clamp(42px, 5.8vw, 74px);
  line-height: 1.05;
  letter-spacing: 0;
}

.mode-hero p {
  position: relative;
  max-width: 840px;
}

.mode-hero-points {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 26px;
}

.mode-hero-points span {
  --mode-point: #10a875;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0;
  color: #0d8362;
  font-size: 13px;
  font-weight: 900;
}

.mode-hero-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--mode-point);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--mode-point) 14%, transparent);
}

.mode-hero-points span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 1px;
  height: 18px;
  background: rgba(13, 131, 98, 0.2);
  transform: translateY(-50%);
}

.mode-hero-points span:nth-child(2) { --mode-point: #4d8ff0; }
.mode-hero-points span:nth-child(3) { --mode-point: #986ddd; }
.mode-hero-points span:nth-child(4) { --mode-point: #e1a62f; }

.mode-stack-section {
  padding-top: 52px;
}

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

.mode-model-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(220, 231, 231, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(19, 32, 43, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.mode-model-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--model-accent, var(--accent));
}

.mode-model-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -76px;
  top: -86px;
  border-radius: 50%;
  background: var(--model-wash, rgba(16, 168, 117, 0.12));
  pointer-events: none;
}

.mode-model-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--model-accent, var(--accent)) 35%, white);
  box-shadow: 0 24px 56px rgba(19, 32, 43, 0.11);
}

.model-lease {
  --model-accent: #10a875;
  --model-wash: rgba(16, 168, 117, 0.14);
}

.model-platform {
  --model-accent: #367cf6;
  --model-wash: rgba(54, 124, 246, 0.13);
}

.model-asset {
  --model-accent: #8b68d6;
  --model-wash: rgba(139, 104, 214, 0.13);
}

.model-synergy {
  --model-accent: #e4a52f;
  --model-wash: rgba(228, 165, 47, 0.15);
}

.mode-model-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mode-model-index {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--model-accent, var(--accent)) 42%, white);
  border-radius: 50%;
  color: var(--model-accent, var(--accent));
  background: color-mix(in srgb, var(--model-accent, var(--accent)) 10%, white);
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.88),
    0 10px 24px color-mix(in srgb, var(--model-accent, var(--accent)) 18%, transparent);
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.mode-model-index::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -6px;
  border: 1px solid color-mix(in srgb, var(--model-accent, var(--accent)) 28%, transparent);
  border-right-color: transparent;
  border-radius: 50%;
  animation: mode-model-ring 7s linear infinite;
}

.mode-model-index::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--model-accent, var(--accent));
  box-shadow: 0 0 12px color-mix(in srgb, var(--model-accent, var(--accent)) 60%, transparent);
  animation: mode-model-dot 5.5s linear infinite;
}

.mode-model-card:nth-child(even) .mode-model-index::before,
.mode-model-card:nth-child(even) .mode-model-index::after {
  animation-direction: reverse;
}

@keyframes mode-model-ring {
  to { transform: rotate(360deg); }
}

@keyframes mode-model-dot {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(31px); }
  to { transform: translate(-50%, -50%) rotate(360deg) translateX(31px); }
}

@media (prefers-reduced-motion: reduce) {
  .mode-model-index::before,
  .mode-model-index::after {
    animation: none;
  }

  .mode-model-index::after {
    transform: translate(-50%, -50%) translateX(31px);
  }
}

.mode-model-role {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--model-accent, var(--accent));
  background: var(--model-wash, rgba(16, 168, 117, 0.12));
  font-size: 12px;
  font-weight: 900;
}

.mode-model-card h3 {
  margin: 24px 0 7px;
  font-size: 28px;
}

.mode-model-card > p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
}

.mode-model-lines {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.mode-model-lines > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid #e5eeee;
  border-radius: 7px;
  background: #f7faf9;
}

.mode-model-lines strong {
  font-size: 13px;
}

.mode-model-lines span {
  color: var(--muted);
  font-size: 12px;
}

.mode-model-card footer {
  display: flex;
  align-items: center;
  min-height: 68px;
  margin-top: auto;
  padding: 15px 22px;
  border-top: 1px solid #e4ecec;
  box-sizing: border-box;
  color: #52606c;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.mode-scale-section {
  max-width: none;
  padding: 78px 22px 0;
}

.mode-dark-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 8px;
  color: #eef8f5;
  background:
    linear-gradient(115deg, rgba(16, 168, 117, 0.14), transparent 36%),
    #101820;
  box-shadow: 0 30px 70px rgba(14, 26, 34, 0.18);
}

.mode-dark-shell .section-head p {
  color: #aebfbc;
}

.mode-dark-shell .eyebrow {
  color: #63e2bc;
  border-color: rgba(99, 226, 188, 0.26);
  background: rgba(16, 168, 117, 0.14);
}

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

.mode-scale-grid article {
  min-height: 310px;
  padding: 22px;
  border: 1px solid rgba(214, 237, 231, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  transition: background 200ms ease, transform 200ms ease;
}

.mode-scale-grid article:hover,
.mode-scale-grid article.is-featured {
  background: rgba(16, 168, 117, 0.13);
}

.mode-scale-grid article:hover {
  transform: translateY(-4px);
}

.scale-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(99, 226, 188, 0.28);
  border-radius: 6px;
  color: #63e2bc;
  font-size: 12px;
  font-weight: 900;
}

.mode-scale-grid h3 {
  margin: 18px 0 7px;
  color: #fff;
  font-size: 24px;
}

.mode-scale-grid p {
  min-height: 68px;
  margin: 0;
  color: #b8c8c5;
  font-size: 14px;
}

.mode-scale-grid dl {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
}

.mode-scale-grid dl div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 9px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.mode-scale-grid dt {
  color: #7f9792;
  font-size: 11px;
}

.mode-scale-grid dd {
  margin: 0;
  color: #e6f2ef;
  font-size: 12px;
  font-weight: 850;
}

.mode-economics-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 16px;
  align-items: stretch;
}

.mode-kpi-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mode-kpi-board article {
  position: relative;
  display: flex;
  min-height: 124px;
  flex-direction: column;
  justify-content: center;
  padding: 19px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.mode-kpi-board article::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 280ms ease;
}

.mode-kpi-board article:hover::after {
  width: 100%;
}

.mode-kpi-board strong {
  display: block;
  font-size: 17px;
}

.mode-kpi-board p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.mode-profit-path {
  padding: 26px;
  border-radius: 8px;
  color: #eef8f5;
  background:
    radial-gradient(circle at 100% 0, rgba(54, 124, 246, 0.18), transparent 32%),
    #142630;
}

.mode-profit-path h3 {
  margin: 14px 0 22px;
  font-size: 27px;
  line-height: 1.2;
}

.profit-path-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 11px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.profit-path-row b {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 6px;
  color: #09251b;
  background: #63e2bc;
  font-size: 12px;
}

.profit-path-row span {
  color: #aebfbc;
  font-size: 12px;
}

.profit-path-row strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 13px;
}

.mode-risk-note {
  margin: 18px 0 0;
  padding: 13px;
  border: 1px solid rgba(240, 184, 78, 0.24);
  border-radius: 7px;
  color: #decda8;
  background: rgba(240, 184, 78, 0.08);
  font-size: 11px;
}

.mode-user-flow,
.mode-contribution-section,
.mode-settlement-section {
  padding-top: 72px;
}

.mode-factor-grid .card {
  position: relative;
  min-height: 210px;
  border-radius: 8px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.mode-factor-grid .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(19, 32, 43, 0.1);
}

.factor-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: var(--factor-color, var(--accent));
  background: var(--factor-bg, rgba(16, 168, 117, 0.1));
}

.factor-icon svg {
  width: 24px;
  height: 24px;
}

.factor-network {
  --factor-color: #0d9c78;
  --factor-bg: rgba(16, 168, 117, 0.12);
}

.factor-compute {
  --factor-color: #367cf6;
  --factor-bg: rgba(54, 124, 246, 0.11);
}

.factor-health {
  --factor-color: #1b9c57;
  --factor-bg: rgba(27, 156, 87, 0.11);
}

.factor-task {
  --factor-color: #d18b12;
  --factor-bg: rgba(228, 165, 47, 0.14);
}

.factor-invite {
  --factor-color: #8060ca;
  --factor-bg: rgba(139, 104, 214, 0.12);
}

.factor-cloud {
  --factor-color: #168eaa;
  --factor-bg: rgba(22, 142, 170, 0.12);
}

.mode-settlement-section .story-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 16px;
}

.mode-formula-card {
  position: relative;
  min-height: 390px;
  padding: 28px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(16, 168, 117, 0.07), transparent 42%),
    rgba(255, 255, 255, 0.94);
}

.mode-formula-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -72px;
  top: -72px;
  border: 1px solid rgba(16, 168, 117, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(16, 168, 117, 0.035);
  pointer-events: none;
}

.mode-formula-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #087a5e;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.mode-formula-kicker::before {
  content: "";
  width: 30px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.mode-formula-lead {
  max-width: 430px;
  margin: 16px 0 18px !important;
  color: #52606c !important;
  font-size: 14px;
}

.mode-formula-list {
  border-top: 1px solid #dce9e7;
}

.mode-formula-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: 67px;
  padding: 12px 0;
  border-bottom: 1px solid #dce9e7;
}

.mode-formula-row strong {
  display: block;
  font-size: 14px;
}

.mode-formula-row p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.mode-compliance-panel {
  min-height: 390px;
  border-radius: 8px;
}

.mode-compliance-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.mode-compliance-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(99, 226, 188, 0.22);
  border-radius: 6px;
  color: #8be9cc;
  background: rgba(16, 168, 117, 0.1);
  font-size: 11px;
  font-weight: 850;
}

.mode-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding: 30px;
  border: 1px solid rgba(16, 168, 117, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(16, 168, 117, 0.13), rgba(54, 124, 246, 0.06)),
    rgba(255, 255, 255, 0.78);
}

.mode-cta h2 {
  max-width: 690px;
  margin: 0;
}

.mode-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

@media (max-width: 920px) {
  .mode-settlement-section .story-grid {
    grid-template-columns: 1fr;
  }

  .mode-model-grid,
  .mode-economics-layout {
    grid-template-columns: 1fr;
  }

  .mode-scale-grid {
    grid-template-columns: 1fr;
  }

  .mode-scale-grid article {
    min-height: 0;
  }

  .mode-scale-grid p {
    min-height: 0;
  }

  .mode-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .mode-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .mode-hero {
    padding: 46px 18px 24px;
  }

  .mode-hero::before {
    width: 270px;
    height: 270px;
    right: -120px;
    top: -84px;
  }

  .mode-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .mode-hero p {
    font-size: 16px;
  }

  .mode-hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }

  .mode-hero-points span {
    justify-content: flex-start;
  }

  .mode-hero-points span:not(:last-child)::after {
    display: none;
  }

  .mode-stack-section,
  .mode-economics-section,
  .mode-user-flow,
  .mode-contribution-section,
  .mode-settlement-section {
    padding: 48px 14px 0;
  }

  .mode-scale-section {
    padding: 48px 10px 0;
  }

  .mode-dark-shell {
    padding: 22px 14px;
  }

  .mode-model-card {
    min-height: 0;
    padding: 20px 18px;
  }

  .mode-model-card h3 {
    margin-top: 18px;
    font-size: 24px;
  }

  .mode-model-lines > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .mode-kpi-board {
    grid-template-columns: 1fr 1fr;
  }

  .mode-kpi-board article {
    min-height: 156px;
    padding: 15px;
  }

  .mode-profit-path,
  .mode-formula-card,
  .mode-compliance-panel {
    padding: 20px;
  }

  .mode-formula-card,
  .mode-compliance-panel {
    min-height: 0;
  }

  .mode-cta {
    margin-top: 48px;
    padding: 22px 18px;
  }

  .mode-cta-actions,
  .mode-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 350px) {
  .mode-hero h1 {
    font-size: 34px;
  }

  .mode-kpi-board {
    grid-template-columns: 1fr;
  }
}

/* Shared multi-column site footer */
.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  padding: 0;
  color: #dbe9e6;
  background: #101c23;
  border-top: 3px solid #16b98e;
}

.site-footer::after {
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(46, 210, 168, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 52px 22px 24px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.55fr) repeat(4, minmax(120px, 0.75fr));
  gap: 38px;
  align-items: start;
}

.site-footer-brand,
.site-footer-column {
  min-width: 0;
}

.site-footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
}

.site-footer-brand-link img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 2px solid rgba(115, 229, 196, 0.45);
  border-radius: 14px;
  background: #edf9f6;
}

.site-footer-brand-link > span {
  display: grid;
  gap: 3px;
}

.site-footer-brand-link strong {
  font-size: 21px;
  line-height: 1.1;
}

.site-footer-brand-link small {
  color: #a8c0bb;
  font-size: 12px;
  line-height: 1.35;
}

.site-footer-brand > p {
  max-width: 330px;
  margin: 20px 0 0;
  color: #bfd0cc;
  font-size: 14px;
  line-height: 1.75;
}

.site-footer-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.site-footer-capabilities span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(78, 210, 174, 0.32);
  border-radius: 6px;
  color: #82e5c7;
  background: #16312f;
  font-size: 12px;
  font-weight: 800;
}

.site-footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer-column h2 {
  margin: 0 0 6px;
  color: #8ca6a0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer-column a,
.site-footer-legal a {
  width: fit-content;
  max-width: 100%;
  color: #eef8f5;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer-column a:hover,
.site-footer-column a:focus-visible,
.site-footer-legal a:hover,
.site-footer-legal a:focus-visible {
  color: #54dcba;
  transform: translateX(3px);
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(181, 218, 208, 0.15);
  color: #8fa7a1;
  font-size: 12px;
}

.site-footer-copyright,
.site-footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.site-footer-legal a {
  color: #a7bcb7;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .site-footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px 26px;
  }

  .site-footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer-brand > p {
    max-width: 650px;
  }
}

@media (max-width: 620px) {
  .site-footer {
    margin-top: 58px;
  }

  .site-footer-inner {
    padding: 38px 18px 22px;
  }

  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
  }

  .site-footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer-brand > p {
    max-width: none;
    font-size: 13px;
  }

  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 32px;
  }
}

@media (max-width: 330px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-brand {
    grid-column: auto;
  }
}

/* Homepage FAQ accordion */
.home-faq {
  margin-top: 72px;
}

.home-faq-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 24px;
}

.home-faq-heading > * {
  min-width: 0;
}

.home-faq-heading h2 {
  margin-top: 12px;
  font-size: 44px;
  line-height: 1.08;
  text-wrap: balance;
}

.home-faq-heading p {
  max-width: 580px;
  margin: 0 0 4px auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.home-faq-list {
  display: grid;
  gap: 12px;
}

.home-faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid #ccd9da;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 24px rgba(19, 32, 43, 0.04);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.home-faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), #5ee0c5);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 220ms ease;
}

.home-faq-item.is-open {
  border-color: rgba(16, 168, 117, 0.45);
  background: #fff;
  box-shadow: 0 16px 38px rgba(19, 32, 43, 0.08);
}

.home-faq-item.is-open::before {
  transform: scaleY(1);
}

.home-faq-question {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 76px;
  padding: 16px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.home-faq-question > span:nth-child(2) {
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.home-faq-question:focus-visible {
  outline: 3px solid rgba(30, 200, 159, 0.28);
  outline-offset: -4px;
}

.home-faq-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 34px;
  border-radius: 7px;
  color: #087b5e;
  background: #e4f6f0;
  font-size: 13px;
  font-weight: 900;
}

.home-faq-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #cddadb;
  border-radius: 50%;
  background: #f7fbfa;
  font-style: normal;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 220ms ease;
}

.home-faq-toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.home-faq-item.is-open .home-faq-toggle {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
  transform: rotate(180deg);
}

.home-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 260ms ease, opacity 180ms ease;
}

.home-faq-answer > div {
  min-height: 0;
  overflow: hidden;
}

.home-faq-answer p {
  max-width: 1020px;
  margin: 0;
  padding: 0 76px 24px 80px;
  color: #455966;
  font-size: 16px;
  line-height: 1.75;
}

.home-faq-item.is-open .home-faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

@media (min-width: 921px) {
  .home-faq-heading {
    display: block;
    text-align: center;
  }

  .home-faq-heading .eyebrow,
  .home-faq-heading p {
    display: none;
  }

  .home-faq-heading h2 {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 920px) {
  .home-faq-heading {
    grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
    gap: 32px;
  }

  .home-faq-heading h2 {
    font-size: 38px;
  }
}

@media (max-width: 620px) {
  .home-faq {
    margin-top: 46px;
  }

  .home-faq-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .home-faq-heading h2 {
    margin-top: 9px;
    font-size: 32px;
  }

  .home-faq-heading p {
    margin: 0;
    font-size: 15px;
  }

  .home-faq-list {
    gap: 10px;
  }

  .home-faq-question {
    grid-template-columns: 34px minmax(0, 1fr) 30px;
    gap: 10px;
    min-height: 68px;
    padding: 13px 12px;
    font-size: 16px;
  }

  .home-faq-index {
    width: 34px;
    height: 30px;
    font-size: 11px;
  }

  .home-faq-toggle {
    width: 30px;
    height: 30px;
  }

  .home-faq-answer p {
    padding: 0 14px 18px 56px;
    font-size: 14px;
    line-height: 1.7;
  }

  .stack-list {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
    gap: 7px;
  }

  .stack-item {
    --stack-tone: #10a875;
    --stack-soft: #e5f6f0;
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: start;
    column-gap: 12px;
    row-gap: 4px;
    min-height: 0;
    padding: 11px 12px 11px 16px;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(100deg, #fff 0%, #fff 82%, var(--stack-soft) 150%);
    box-shadow: 0 5px 14px rgba(19, 32, 43, 0.04);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .stack-item::before {
    content: "";
    position: absolute;
    top: 11px;
    bottom: 11px;
    left: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--stack-tone);
    opacity: 0.7;
  }

  .stack-item:nth-child(2) {
    --stack-tone: #3987e8;
    --stack-soft: #edf4ff;
  }

  .stack-item:nth-child(3) {
    --stack-tone: #d79a21;
    --stack-soft: #fff7df;
  }

  .stack-item:nth-child(4) {
    --stack-tone: #8566d9;
    --stack-soft: #f3efff;
  }

  .stack-item:active {
    transform: translateY(-1px);
    border-color: var(--stack-tone);
    box-shadow: 0 12px 28px rgba(19, 32, 43, 0.09);
  }

  .stack-item b {
    grid-column: 1;
    grid-row: 1;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: var(--stack-tone);
    background: var(--stack-soft);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--stack-tone) 14%, transparent);
  }

  .stack-item > div {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .stack-item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 16px;
    line-height: 1.28;
  }

  .stack-item br {
    display: none;
  }

  .stack-item span {
    display: block;
    font-size: 12.5px;
    line-height: 1.48;
    overflow-wrap: anywhere;
  }

  .stack-item .pill {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    padding: 4px 9px;
    border: 1px solid color-mix(in srgb, var(--stack-tone) 18%, transparent);
    border-radius: 999px;
    color: var(--stack-tone);
    background: var(--stack-soft);
    font-size: 11px;
  }
}

.hero-coin-stage {
  display: none;
}

@keyframes hero-coin-spin {
  0% {
    transform: translate(-50%, -50%) rotateX(-3deg) rotateY(0deg);
  }
  25% {
    transform: translate(-50%, -50%) rotateX(2deg) rotateY(90deg);
  }
  50% {
    transform: translate(-50%, -50%) rotateX(-3deg) rotateY(180deg);
  }
  75% {
    transform: translate(-50%, -50%) rotateX(2deg) rotateY(270deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(-3deg) rotateY(360deg);
  }
}

@keyframes hero-coin-shadow {
  0%, 50%, 100% {
    opacity: 0.12;
    transform: translateX(-50%) scaleX(1);
  }
  25%, 75% {
    opacity: 0.06;
    transform: translateX(-50%) scaleX(0.28);
  }
}

@keyframes promo-step-float {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(-5px); }
}

@keyframes promo-step-sheen {
  0%, 18% { left: -42%; opacity: 0; }
  34% { opacity: 0.72; }
  58%, 100% { left: 122%; opacity: 0; }
}

@keyframes promo-step-icon-pulse {
  0%, 100% { transform: scale(1); }
  48% { transform: scale(1.08); }
}

@keyframes promo-step-ring {
  0% { opacity: 0.72; transform: scale(0.76); }
  72%, 100% { opacity: 0; transform: scale(1.42); }
}

@media (max-width: 620px) {
  .hero-coin-stage {
    position: absolute;
    top: 39%;
    left: 50%;
    z-index: 0;
    display: block;
    width: 190px;
    height: 190px;
    margin: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    perspective: 1100px;
    background: none;
  }

  .hero-coin-stage::after {
    content: none;
  }

  .hero-coin-stage i {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 176px;
    height: 176px;
    border-radius: 50%;
    opacity: 0.2;
    background:
      radial-gradient(circle at 50% 44%, rgba(232, 255, 249, 0.92) 0 56%, transparent 57%),
      linear-gradient(90deg, #075f52 0%, #27b99f 18%, #8aead8 34%, #0a806b 52%, #59d8c1 72%, #075f52 100%);
    box-shadow:
      inset 0 0 0 2px rgba(221, 255, 248, 0.76),
      inset 0 0 24px rgba(8, 69, 59, 0.42),
      0 9px 18px rgba(9, 66, 57, 0.12);
    transform: translate(-50%, -50%) rotateX(-3deg) rotateY(0deg);
    transform-style: preserve-3d;
    outline: 1px solid transparent;
    will-change: transform;
    animation: hero-coin-spin 8s linear infinite;
  }

  .hero-coin-stage i::before,
  .hero-coin-stage i::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 2px solid rgba(32, 190, 160, 0.64);
    border-radius: 50%;
    -webkit-mask-image: radial-gradient(circle, #000 0 98.8%, rgba(0, 0, 0, 0.88) 99.35%, transparent 100%);
    mask-image: radial-gradient(circle, #000 0 98.8%, rgba(0, 0, 0, 0.88) 99.35%, transparent 100%);
    background-image:
      url("assets/panda-cloud-login.png"),
      linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(216, 249, 241, 0.12) 48%, rgba(20, 139, 116, 0.2));
    background-position: center -107px, center;
    background-size: 296px auto, cover;
    background-repeat: no-repeat;
    box-shadow:
      inset 0 0 0 7px rgba(233, 255, 250, 0.5),
      inset 0 0 28px rgba(19, 121, 102, 0.2);
    backface-visibility: hidden;
    transform-origin: center;
  }

  .hero-coin-stage i::before {
    transform: translateZ(8px);
  }

  .hero-coin-stage i::after {
    transform: rotateY(180deg) translateZ(8px);
  }

  .hero-inner {
    position: relative;
    z-index: 1;
  }

  .hero-copy {
    position: relative;
    isolation: isolate;
  }

  .hero-copy > :not(.hero-coin-stage) {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 620px) and (prefers-reduced-motion: reduce) {
  .promo-video-sequence span.is-active,
  .promo-video-sequence span.is-active::before,
  .promo-video-sequence span.is-active i,
  .promo-video-sequence span.is-active i::after {
    animation: none;
  }
}

/* Multilingual layout guardrails: let longer translations size the mobile UI. */
.story-panel,
.story-panel h2,
.story-panel p,
.feature-chips,
.feature-chips > *,
.audience-card,
.audience-card > *,
.dark-inner,
.dark-inner > *,
.strength-row,
.strength-row > *,
.history-overlay,
.history-carousel,
.history-carousel article,
.ad-stage,
.ad-slide,
.ad-slide > * {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.download-hero,
.download-hero > *,
.download-grid,
.download-grid > *,
.download-panel,
.download-panel > *,
.download-card,
.download-card > *,
.trust-settlement,
.trust-settlement > *,
.trust-safety,
.trust-safety > *,
.trust-safety-list,
.trust-safety-list > * {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

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

.download-panel h1,
.download-panel p,
.download-card h3,
.download-card p,
.download-card dt,
.download-card dd,
.trust-settlement h2,
.trust-settlement p,
.trust-safety h2,
.trust-safety p,
.trust-safety strong,
.trust-safety span {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.story-panel h2,
.story-panel p,
.feature-prime strong,
.feature-prime span,
.feature-tile span,
.audience-card h3,
.audience-card p,
.mini-tags span,
.dark-band .section-head h2,
.dark-band .section-head p,
.strength-row b,
.strength-row span,
.history-overlay strong,
.history-overlay span,
.history-overlay em,
.ad-slide h3,
.ad-slide p {
  overflow-wrap: anywhere;
  hyphens: auto;
}

@media (max-width: 620px) {
  .download-hero,
  .download-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .download-panel,
  .download-card {
    width: 100%;
  }

  .download-hero {
    gap: 12px;
  }

  .download-panel {
    padding: 20px;
    border-radius: 18px;
  }

  html:not([lang="zh-CN"]) .download-panel h1 {
    font-size: clamp(27px, 7.4vw, 30px);
    line-height: 1.08;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }

  .download-panel p {
    line-height: 1.55;
  }

  .download-hero > .card {
    padding: 18px;
  }

  .download-card .btn,
  .trust-settlement .section-head .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 10px 14px;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
  }

  .download-card-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-safety-copy,
  .trust-safety-list {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .story-panel {
    min-height: 0;
    padding: 20px;
    border-radius: 18px;
  }

  .story-panel h2 {
    margin: 0;
    font-size: clamp(26px, 7.4vw, 31px);
    line-height: 1.12;
    text-wrap: balance;
  }

  .story-panel p {
    margin: 14px 0 0;
    font-size: 14px;
    line-height: 1.58;
  }

  html:not([lang="zh-CN"]) .story-panel p {
    line-height: 1.52;
  }

  .feature-chips {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
    margin-top: 18px;
    padding-top: 0;
  }

  .feature-prime {
    display: grid;
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
    justify-content: stretch;
    column-gap: 12px;
    row-gap: 2px;
    min-height: 70px;
    padding: 0 0 16px;
  }

  .feature-prime i {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    width: 40px;
    height: 40px;
    margin: 0;
    border-radius: 50%;
  }

  .feature-prime strong {
    grid-column: 2;
    grid-row: 1;
    font-size: 17px;
    line-height: 1.25;
  }

  .feature-prime span {
    grid-column: 2;
    grid-row: 2;
    margin: 2px 0 0;
    font-size: 12px;
    line-height: 1.4;
  }

  .feature-tile {
    gap: 8px;
    min-height: 72px;
    padding: 16px 4px 4px;
  }

  .feature-tile:nth-child(n+4) {
    margin-top: 8px;
    border-top: 1px solid rgba(84, 221, 186, 0.18);
  }

  .feature-tile i {
    width: 20px;
    height: 20px;
  }

  .feature-tile i::before {
    inset: 6px;
  }

  .feature-tile span {
    max-width: 140px;
    font-size: 12px;
    line-height: 1.35;
  }

  html:not([lang="zh-CN"]) .feature-tile span {
    font-size: 11.5px;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .story-panel .orbit {
    right: -76px;
    bottom: -76px;
    width: 210px;
    height: 210px;
  }

  .stack-list {
    gap: 7px;
  }

  .stack-item {
    column-gap: 11px;
    row-gap: 4px;
    padding: 10px 11px 10px 15px;
  }

  .stack-item strong {
    margin-bottom: 2px;
    font-size: 15.5px;
    line-height: 1.24;
  }

  .stack-item span {
    font-size: 12px;
    line-height: 1.45;
  }

  .stack-item .pill {
    padding: 3px 8px;
  }

  .audience-card {
    min-height: 0;
    padding: 18px;
  }

  .audience-card p {
    line-height: 1.55;
  }

  .mini-tags {
    gap: 6px;
    margin-top: 12px;
  }

  .mini-tags span {
    max-width: 100%;
    padding: 6px 8px;
    font-size: 11px;
    line-height: 1.3;
  }

  .dark-band {
    margin-top: 52px;
    padding: 48px 16px;
    overflow: hidden;
  }

  .dark-band .section-head {
    gap: 14px;
  }

  .dark-band .section-head h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.12;
  }

  .dark-band .section-head p {
    margin-top: 0;
    padding-top: 0;
    font-size: 14px;
    line-height: 1.58;
  }

  .strength-row {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .strength-row div {
    min-width: 0;
    padding: 13px 14px;
    border-radius: 13px;
  }

  .strength-row b {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.3;
  }

  .strength-row span {
    display: block;
    font-size: 12.5px;
    line-height: 1.5;
  }

  .history-overlay {
    min-height: 0;
    padding: 16px;
    background:
      linear-gradient(135deg, rgba(16, 24, 32, 0.97), rgba(18, 51, 49, 0.93)),
      radial-gradient(circle at 90% 10%, rgba(34, 211, 182, 0.2), transparent 32%),
      rgba(16, 24, 32, 0.94);
  }

  .history-overlay::after {
    width: 46px;
    height: 46px;
    right: 16px;
    top: 12px;
    z-index: 0;
    border: 0;
    border-radius: 16px;
    background: url("assets/panda-cloud-logo.png") center / contain no-repeat;
    box-shadow: none;
    opacity: 0.12;
  }

  .history-carousel {
    display: block;
    height: var(--history-active-height, 210px);
    min-height: 0;
    z-index: 1;
    transition: height 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .history-carousel article {
    position: absolute;
    inset: 0 0 auto;
    align-self: start;
    transform: none;
    animation-name: history-slide-mobile;
  }

  .history-overlay small {
    max-width: 100%;
    margin-bottom: 8px;
    white-space: normal;
    line-height: 1.25;
  }

  .history-dots {
    position: relative;
    z-index: 1;
    margin-top: 12px;
  }

  .history-overlay strong {
    font-size: 19px;
    line-height: 1.22;
  }

  .history-overlay span {
    font-size: 12px;
    line-height: 1.5;
  }

  .history-carousel div {
    gap: 5px;
    margin-top: 10px;
  }

  .history-overlay em {
    max-width: 100%;
    padding: 5px 7px;
    font-size: 10.5px;
    line-height: 1.25;
  }

  .ad-stage,
  .ad-slide,
  .ad-slide > * {
    width: 100%;
  }

  .ad-device-map,
  .ad-stats,
  .ad-timeline,
  .ad-mini-grid {
    min-width: 0;
    max-width: 100%;
  }

  .ad-device-map,
  .ad-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ad-timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .ad-device-map b,
  .ad-stats strong,
  .ad-stats span,
  .ad-timeline span,
  .ad-mini-grid b,
  .ad-mini-grid span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 620px) {
  .metric-grid > .mobile-fold-item,
  .strength-row > .mobile-fold-item {
    position: relative;
    padding: 0 14px;
    overflow: hidden;
    border-radius: 10px;
  }

  .mobile-fold-trigger {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 58px;
    padding: 12px 0;
    color: #fff;
    cursor: pointer;
    box-sizing: border-box;
  }

  .mobile-fold-trigger strong,
  .mobile-fold-trigger b {
    min-width: 0;
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
    text-align: left;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .mobile-fold-chevron {
    --fold-angle: 0deg;
    position: relative;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(115, 226, 207, 0.22);
    border-radius: 50%;
    background: rgba(115, 226, 207, 0.08);
    transition: background-color 220ms ease, box-shadow 220ms ease;
  }

  .mobile-fold-chevron::before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid #73e2cf;
    border-bottom: 2px solid #73e2cf;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 220ms ease;
  }

  .mobile-fold-chevron::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    opacity: 0;
    background: conic-gradient(from -90deg, #73e2cf 0deg, #22d3b6 var(--fold-angle), rgba(115, 226, 207, 0.12) var(--fold-angle), rgba(115, 226, 207, 0.12) 360deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
    pointer-events: none;
  }

  .mobile-fold-content {
    display: block !important;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 300ms ease, padding-bottom 300ms ease, opacity 200ms ease, transform 300ms ease;
  }

  .mobile-fold-item.is-open .mobile-fold-content {
    max-height: 320px;
    padding-bottom: 14px;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-fold-item.is-open .mobile-fold-chevron {
    background: rgba(115, 226, 207, 0.16);
    box-shadow: 0 0 14px rgba(34, 211, 182, 0.3), inset 0 0 10px rgba(115, 226, 207, 0.1);
    animation: mobile-fold-glow 1.8s ease-in-out infinite;
  }

  .mobile-fold-item.is-open .mobile-fold-chevron::before {
    transform: translateY(2px) rotate(225deg);
  }

  .mobile-fold-item.is-open .mobile-fold-chevron::after {
    opacity: 1;
    animation: mobile-fold-ring-progress 10s linear forwards;
  }
}

@property --fold-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes mobile-fold-ring-progress {
  to { --fold-angle: 360deg; }
}

@keyframes mobile-fold-glow {
  0%, 100% { box-shadow: 0 0 9px rgba(34, 211, 182, 0.22), inset 0 0 8px rgba(115, 226, 207, 0.08); }
  50% { box-shadow: 0 0 18px rgba(34, 211, 182, 0.5), inset 0 0 12px rgba(115, 226, 207, 0.18); }
}

@media (max-width: 620px) {
  .audience-grid {
    gap: 10px;
  }

  .audience-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: 13px;
    row-gap: 4px;
    min-height: 0;
    padding: 15px;
  }

  .audience-card .tech-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 13px;
  }

  .audience-card .tech-icon i {
    width: 24px;
    height: 24px;
    border-radius: 8px;
  }

  .audience-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    font-size: 17px;
    line-height: 1.26;
  }

  .audience-card p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
  }
}
