:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f4f7fb;
  --ink: #121826;
  --muted: #5f6f7a;
  --line: #e8edf4;
  --brand: #408ee8;
  --brand-dark: #1d64ba;
  --accent: #18b78f;
  --warning: #f5b84b;
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

@media (max-width: 980px) {
  .mobile-nav-panel {
    position: relative;
    display: block;
  }

  .mobile-nav-panel summary {
    position: relative;
    z-index: 70;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    gap: 5px;
    cursor: pointer;
  }

  .mobile-nav-panel summary span {
    display: block;
    width: 27px;
    height: 1.5px;
    background: #1f2933;
    transform-origin: center;
    transition:
      opacity 0.16s ease,
      transform 0.16s ease;
  }

  .mobile-nav-panel[open] summary span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .mobile-nav-panel[open] summary span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-panel[open] summary span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .mobile-nav-panel nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: block;
    width: 100vw;
    height: 100vh;
    padding: 28px 24px 44px;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
  }

  .mobile-nav-panel nav a + a {
    border-top: 0;
  }

  .mobile-menu-language {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    margin-bottom: 24px;
    color: #6f7682;
    font-size: 16px;
    font-weight: 600;
  }

  .mobile-menu-language svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .mobile-menu-primary,
  .mobile-menu-soft {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin: 0 0 16px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 800;
  }

  .mobile-menu-primary {
    background: #438de2;
    color: #ffffff;
  }

  .mobile-menu-soft {
    background: #edf5ff;
    color: #4380bd;
  }

  .mobile-menu-id {
    gap: 6px;
    color: #168fd7;
    letter-spacing: 0;
  }

  .mobile-menu-id span {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: #f05252;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-menu-group {
    margin: 0 -24px;
    border-top: 1px solid #edf1f5;
  }

  .mobile-menu-group:last-of-type {
    border-bottom: 1px solid #edf1f5;
  }

  .mobile-menu-group summary {
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    min-height: 70px;
    place-items: initial;
    gap: 0;
    padding: 0 24px;
    color: #252b35;
    font-size: 17px;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
  }

  .mobile-menu-group summary::after {
    display: none;
  }

  .mobile-menu-group[open] summary::after {
    transform: none;
  }

  .mobile-menu-group a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 32px;
    color: #5c6674;
    font-size: 15px;
    font-weight: 650;
  }

  .mobile-menu-group a:last-child {
    padding-bottom: 12px;
  }

  .mobile-menu-subscribe {
    position: relative;
    margin: 24px 0 10px;
  }

  .mobile-menu-subscribe input {
    width: 100%;
    min-height: 48px;
    padding: 0 58px 0 22px;
    border: 0;
    border-radius: 999px;
    background: #f1f3f6;
    color: #526070;
    font: inherit;
    font-size: 15px;
    outline: none;
  }

  .mobile-menu-subscribe button {
    position: absolute;
    top: 6px;
    right: 8px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: #1f9ae8;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
  }

  .mobile-menu-note {
    margin: 0 0 24px;
    color: #b3bbc6;
    font-size: 15px;
    font-weight: 700;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  letter-spacing: 0;
  cursor: pointer;
}

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

img {
  transform-origin: center;
}

.brand-mark,
.hero-visual img,
.showcase-art img,
.eco-logo-wall-image {
  transition:
    transform 0.28s ease,
    filter 0.28s ease;
}

.brand:hover .brand-mark,
.hero-visual:hover img,
.showcase-art:hover img,
.ecosystem-logo-wall:hover .eco-logo-wall-image {
  transform: translateY(-6px) scale(1.025);
}

.hero-visual:hover img,
.showcase-art:hover img,
.ecosystem-logo-wall:hover .eco-logo-wall-image {
  filter: drop-shadow(0 18px 26px rgba(25, 65, 120, 0.14));
}

.brand:active .brand-mark,
.hero-visual:active img,
.showcase-art:active img,
.ecosystem-logo-wall:active .eco-logo-wall-image {
  transform: translateY(-2px) scale(1.012);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 82px;
  border-bottom: 1px solid rgba(232, 237, 244, 0.78);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1120px, calc(100% - 64px));
  min-height: 82px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 780;
  letter-spacing: 0;
}

.brand-mark {
  width: 166px;
  height: auto;
  display: block;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  transform: translateX(-8px);
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.nav-group {
  position: relative;
  padding: 28px 0;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: var(--muted);
  font-weight: 700;
  cursor: default;
}

.nav-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-menu {
  position: absolute;
  top: calc(100% - 12px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 206px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-menu a:hover {
  background: var(--surface-2);
  color: var(--ink);
}

.primary-nav button,
.primary-nav a,
.nav-trigger,
.text-link {
  transition: color 0.18s ease;
}

.primary-nav button:hover,
.primary-nav a:hover,
.nav-group:hover .nav-trigger,
.text-link:hover {
  color: var(--ink);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-panel {
  display: none;
}

.mobile-nav-panel summary {
  list-style: none;
}

.mobile-nav-panel summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-panel summary::after {
  content: none;
  display: none;
}

.mobile-menu-group summary::-webkit-details-marker {
  display: none;
}

.solid-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.solid-button {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(64, 142, 232, 0.24);
}

.outline-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

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

.solid-button:hover {
  box-shadow: 0 18px 36px rgba(64, 142, 232, 0.28);
}

.outline-button:hover {
  border-color: #b8c8bf;
}

.text-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

main {
  overflow: hidden;
}

.notice-bar {
  min-height: 42px;
  background: #f5f7fa;
  overflow: hidden;
}

.notice-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(1040px, calc(100% - 64px));
  min-height: 42px;
  margin: 0 auto;
  color: #6e7785;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.notice-viewport {
  position: relative;
  flex: 1;
  height: 24px;
  overflow: hidden;
}

.notice-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 100%;
  background: linear-gradient(90deg, rgba(244, 246, 250, 0), #f4f6fa 76%);
  pointer-events: none;
}

.notice-track {
  display: grid;
  animation: notice-roll 20s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.notice-track button {
  display: flex;
  align-items: center;
  height: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
}

.notice-track button:hover {
  color: var(--brand-dark);
}

.notice-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #7f8a98;
  background: #e7ecf3;
  border-radius: 6px;
}

.notice-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes notice-roll {
  0%,
  13% {
    transform: translateY(0);
  }

  20%,
  33% {
    transform: translateY(-24px);
  }

  40%,
  53% {
    transform: translateY(-48px);
  }

  60%,
  73% {
    transform: translateY(-72px);
  }

  80%,
  93% {
    transform: translateY(-96px);
  }

  100% {
    transform: translateY(0);
  }
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: min(1120px, calc(100% - 64px));
  min-height: 440px;
  margin: 56px auto 66px;
  padding: 58px clamp(42px, 6vw, 86px);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-copy {
  max-width: 430px;
  min-width: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 520px;
  margin-bottom: 18px;
  color: #535d6d;
  font-size: clamp(32px, 3.1vw, 42px);
  font-weight: 430;
  line-height: 1.28;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-copy h1 span {
  display: inline;
}

.hero-copy p {
  max-width: 410px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.72;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
}

.hero-visual img {
  display: block;
  width: min(470px, 100%);
  height: auto;
}

.content-page {
  width: min(980px, calc(100% - 64px));
  margin: 72px auto 92px;
}

.seo-content-page {
  width: min(1040px, calc(100% - 64px));
  margin-top: clamp(54px, 8vw, 92px);
}

.content-hero {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-bottom: 42px;
}

.seo-hero {
  justify-items: center;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: clamp(34px, 6vw, 58px);
  text-align: center;
}

.content-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: 0;
}

.seo-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.content-hero p,
.content-section p,
.content-section li,
.content-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.seo-hero p {
  max-width: 720px;
  margin: 0;
  font-size: 18px;
}

.about-page {
  width: min(1120px, calc(100% - 64px));
  margin: clamp(58px, 8vw, 96px) auto 96px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
  min-height: 520px;
}

.about-hero-copy {
  display: grid;
  gap: 18px;
}

.about-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
}

.about-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(21px, 2.4vw, 32px);
  line-height: 1.46;
}

.about-hero-card {
  display: grid;
  gap: 18px;
  align-content: end;
  min-height: 390px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 18%, rgba(20, 154, 232, 0.18), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #f5fbff 100%);
  box-shadow: 0 24px 70px rgba(28, 66, 98, 0.1);
}

.about-hero-card img {
  width: 62px;
  height: 62px;
  border-radius: 16px;
}

.about-hero-card strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.1;
}

.about-hero-card p {
  font-size: 17px;
  line-height: 1.72;
}

.about-metric-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(28px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-metric-section article {
  display: grid;
  gap: 8px;
  padding: 34px 26px;
  border-right: 1px solid var(--line);
}

.about-metric-section article:last-child {
  border-right: 0;
}

.about-metric-section strong {
  color: var(--ink);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.about-metric-section span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.about-company-section,
.about-photo-section,
.about-career-section,
.about-cta-section {
  margin-top: clamp(50px, 8vw, 92px);
}

.about-company-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.about-section-head,
.about-photo-copy {
  display: grid;
  gap: 14px;
}

.about-section-head h2,
.about-photo-copy h2,
.about-career-section h2,
.about-cta-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-section-head p,
.about-photo-copy p,
.about-career-section p,
.about-belief-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.about-network-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.about-network-card span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 16px;
  border-radius: 8px;
  background: #f7fafc;
  color: var(--ink);
  font-weight: 800;
}

.about-network-card img {
  width: 28px;
  height: 28px;
}

.about-belief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(50px, 8vw, 92px);
}

.about-belief-grid article {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 310px;
  padding: 34px;
  border-radius: 8px;
  background: #f5f8fb;
}

.about-belief-grid article:nth-child(2) {
  background: #f6fbf8;
}

.about-belief-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.about-belief-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}

.about-photo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.about-photo-grid {
  position: relative;
  min-height: 470px;
}

.about-photo-grid figure {
  margin: 0;
}

.about-photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #2f3a48;
  box-shadow: 0 10px 30px rgba(28, 66, 98, 0.12);
  font-size: 12px;
  font-weight: 850;
}

.about-photo-main,
.about-photo-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(225, 232, 240, 0.9);
  border-radius: 8px;
  background: #f6fafc;
  box-shadow: 0 24px 70px rgba(28, 66, 98, 0.14);
}

.about-photo-main {
  top: 22px;
  left: 0;
  width: 74%;
  height: 370px;
}

.about-photo-card {
  right: 0;
  width: 38%;
}

.about-photo-card-security {
  top: 0;
  height: 205px;
}

.about-photo-card-wallet {
  bottom: 0;
  height: 238px;
}

.about-photo-card-wallet img {
  object-position: center top;
}

.about-career-section,
.about-cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.about-career-section > div {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.about-career-section h2,
.about-cta-section h2 {
  font-size: clamp(28px, 3.8vw, 46px);
}

.about-cta-section {
  background: #f4f9ff;
}

.careers-page {
  width: min(1160px, calc(100% - 64px));
  margin: clamp(46px, 7vw, 86px) auto 96px;
}

.careers-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
  min-height: 620px;
}

.careers-hero-copy {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.careers-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: 0;
}

.careers-hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.42;
}

.careers-hero-visual {
  position: relative;
  display: grid;
  min-height: 480px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 24%, rgba(31, 154, 232, 0.26), transparent 28%),
    linear-gradient(145deg, #f4fbff 0%, #f7fbf8 100%);
}

.careers-hero-visual > img {
  width: min(420px, 82%);
  height: auto;
  filter: drop-shadow(0 28px 52px rgba(28, 66, 98, 0.16));
}

.careers-floating-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 6px;
  width: min(230px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(225, 232, 240, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(28, 66, 98, 0.14);
}

.careers-floating-card strong {
  color: var(--brand-dark);
  font-size: 38px;
  line-height: 1;
}

.careers-floating-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.careers-profile-section,
.careers-mission-section,
.careers-proof-grid,
.careers-quote-section,
.careers-value-section,
.careers-open-section {
  margin-top: clamp(58px, 9vw, 106px);
}

.careers-section-head {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: center;
}

.careers-section-head h2,
.careers-mission-section h2,
.careers-open-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.9vw, 64px);
  line-height: 1.1;
  letter-spacing: 0;
}

.careers-profile-grid,
.careers-value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.careers-profile-grid article,
.careers-value-list article,
.careers-proof-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.careers-profile-grid article {
  min-height: 280px;
}

.careers-profile-grid span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #eef7ff;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.careers-profile-grid h3,
.careers-proof-grid h2,
.careers-value-list strong {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.careers-profile-grid p,
.careers-mission-section p,
.careers-proof-grid p,
.careers-value-list p,
.careers-open-section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.careers-mission-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  padding: 42px;
  border-radius: 8px;
  background: #f5f9ff;
}

.careers-mission-section > div {
  display: grid;
  gap: 14px;
}

.careers-mission-section img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(28, 66, 98, 0.12);
}

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

.careers-proof-grid article {
  min-height: 300px;
}

.careers-proof-grid img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.careers-quote-section {
  padding: clamp(42px, 7vw, 76px);
  border-radius: 8px;
  background: #101820;
  color: #ffffff;
}

.careers-quote-section blockquote {
  max-width: 900px;
  margin: 0 auto;
}

.careers-quote-section p {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.22;
}

.careers-quote-section cite {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
}

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

.careers-value-list article {
  min-height: 210px;
  background: #f8fafc;
}

.careers-open-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.74fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.careers-open-section > div:first-child {
  display: grid;
  gap: 14px;
}

.careers-role-panel {
  display: grid;
  gap: 14px;
}

.careers-role-panel label {
  display: grid;
  gap: 8px;
}

.careers-role-panel label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.careers-role-panel select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
}

.api-page {
  width: min(1120px, calc(100% - 64px));
  margin: clamp(50px, 7vw, 88px) auto 96px;
}

.api-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 7vw, 82px);
  min-height: 540px;
}

.api-hero-copy {
  display: grid;
  gap: 20px;
}

.api-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: 0;
}

.api-hero p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 2.1vw, 27px);
  line-height: 1.55;
}

.api-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.api-hero-panel {
  overflow: hidden;
  border: 1px solid #1f2d3d;
  border-radius: 8px;
  background: #111923;
  box-shadow: 0 26px 70px rgba(17, 25, 35, 0.18);
}

.api-terminal-head {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d141d;
}

.api-terminal-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b6b;
}

.api-terminal-head span:nth-child(2) {
  background: #ffd166;
}

.api-terminal-head span:nth-child(3) {
  background: #2ed573;
}

.api-hero-panel pre {
  margin: 0;
  padding: 28px;
  overflow: auto;
  color: #d8f5e4;
  font: 700 15px/1.7 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.api-hero-panel p {
  margin: 0;
  padding: 0 28px 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 750;
}

.api-doc-section,
.api-start-section,
.api-link-section {
  margin-top: clamp(56px, 8vw, 92px);
}

.api-section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.api-section-head h2,
.api-start-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.1;
  letter-spacing: 0;
}

.api-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

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

.api-doc-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
}

.api-doc-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(225, 232, 240, 0.92);
  border-radius: 50%;
  background: #f8fbfd;
  box-shadow: inset 0 0 0 6px #ffffff;
}

.api-doc-icon img {
  display: block;
  width: 30px;
  height: 30px;
}

.api-doc-grid strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.api-doc-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.api-start-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: 34px;
  border-radius: 8px;
  background: #f6fafc;
}

.api-start-section > div {
  display: grid;
  gap: 12px;
}

.api-start-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: api-step;
}

.api-start-list li {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 0 0 22px 54px;
  counter-increment: api-step;
}

.api-start-list li + li {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.api-start-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--brand-dark);
  content: counter(api-step, decimal-leading-zero);
  font-size: 11px;
  font-weight: 950;
}

.api-start-list li + li::before {
  top: 22px;
}

.api-start-list strong {
  color: var(--ink);
  font-size: 18px;
}

.api-start-list span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.api-link-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.api-link-section a {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
}

.api-link-section strong {
  color: var(--ink);
  font-size: 19px;
}

.api-link-section span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.seo-card-grid {
  margin: 0 0 clamp(42px, 7vw, 72px);
}

.content-card {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.seo-card-grid .content-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  box-shadow: none;
}

.content-card h2,
.content-section h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.28;
}

.content-card p {
  margin: 0;
}

.content-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.seo-list-section,
.content-faq,
.related-pages {
  width: min(820px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.content-section ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.content-section li {
  position: relative;
  padding-left: 22px;
}

.content-section li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.content-faq {
  display: grid;
  gap: 0;
}

.content-faq details {
  border-top: 1px solid var(--line);
}

.content-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.content-faq summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.35;
}

.content-faq details p {
  margin: -4px 0 20px;
}

.crypto-icon-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.crypto-icon-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.crypto-icon-strip img,
.route-track img,
.token-panel-grid img,
.network-board-grid img {
  display: block;
  width: 24px;
  height: 24px;
}

.layer2-route-section,
.chain-token-panel,
.evm-network-board,
.evm-address-section {
  margin: clamp(38px, 7vw, 76px) auto 0;
}

.layer2-route-section {
  display: grid;
  gap: 28px;
}

.route-copy,
.network-board-head {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.route-copy h2,
.network-board-head h2,
.mobile-seo-split h2,
.chain-token-panel h2,
.address-checks h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.route-copy p,
.network-board-head p,
.mobile-seo-split p,
.address-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.route-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.route-track article,
.network-board-grid article,
.token-panel-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 180px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
}

.route-track strong,
.network-board-grid strong,
.token-panel-grid strong,
.address-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.route-track p,
.network-board-grid span,
.token-panel-grid span {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.mobile-seo-split,
.evm-address-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
  margin: clamp(44px, 7vw, 76px) auto 0;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.mobile-seo-split > div,
.address-checks {
  display: grid;
  gap: 12px;
}

.mobile-check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-check-list li {
  position: relative;
  min-height: 42px;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid #e4edf7;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.mobile-check-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 4px;
  width: 10px;
  height: 10px;
  border: 3px solid #d7eaff;
  border-radius: 50%;
  background: var(--brand);
}

.chain-token-panel {
  display: grid;
  gap: 20px;
  text-align: center;
}

.token-panel-grid,
.network-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.evm-network-board {
  display: grid;
  gap: 28px;
}

.address-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid #dcecff;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(30, 88, 150, 0.08);
}

.address-card > span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--brand-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  font-weight: 800;
}

.security-risk-section,
.faq-topic-section,
.terms-summary-section {
  display: grid;
  gap: 28px;
  margin: clamp(40px, 7vw, 76px) auto 0;
}

.risk-head,
.terms-summary-head {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.risk-head h2,
.faq-topic-section h2,
.terms-summary-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.risk-head p,
.faq-topic-section p,
.terms-summary-head p,
.terms-summary-list p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.risk-list {
  display: grid;
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.risk-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.risk-list strong {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: #eef6ff;
  color: var(--brand-dark);
  font-size: 13px;
}

.faq-topic-section {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.faq-topic-section > div {
  display: grid;
  gap: 12px;
}

.faq-topic-grid,
.terms-summary-list {
  display: grid;
  gap: 12px;
}

.faq-topic-grid button,
.faq-topic-grid a {
  width: 100%;
  border: 1px solid var(--line);
  font: inherit;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: #f8fbff;
}

.faq-topic-grid button.is-active {
  border-color: #b8d8ff;
  background: #edf6ff;
  box-shadow: inset 3px 0 0 var(--brand);
}

.faq-topic-grid img {
  grid-row: span 2;
  display: block;
  width: 28px;
  height: 28px;
}

.faq-topic-grid strong,
.terms-summary-list strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.faq-topic-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.faq-seo-page {
  display: grid;
  gap: 34px;
  width: min(1040px, calc(100% - 32px));
  margin: 34px auto 78px;
}

.faq-seo-hero {
  display: grid;
  gap: 16px;
  padding: 32px 22px;
  border: 1px solid #e2edf8;
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(45, 139, 255, 0.13), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.faq-seo-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 8vw, 54px);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: 0;
}

.faq-seo-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.faq-keyword-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 4px;
}

.faq-keyword-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid #dcecff;
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 760;
}

.faq-layout {
  display: grid;
  gap: 28px;
}

.faq-index-panel {
  display: grid;
  gap: 14px;
  align-self: start;
}

.faq-index-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 6vw, 36px);
  line-height: 1.2;
  letter-spacing: 0;
}

.faq-index-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.faq-group-stack {
  display: grid;
  gap: 34px;
}

.faq-group {
  display: grid;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.faq-group[hidden] {
  display: none;
}

.faq-group-head {
  display: grid;
  gap: 8px;
}

.faq-group h2,
.faq-download-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 6vw, 38px);
  line-height: 1.2;
  letter-spacing: 0;
}

.faq-answer-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-answer-list details {
  border-bottom: 1px solid var(--line);
}

.faq-answer-list summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.42;
}

.faq-answer-list p {
  margin: -2px 0 19px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.faq-download-cta {
  display: grid;
  gap: 22px;
  padding: 26px 22px;
  border: 1px solid #dce9f7;
  border-radius: 8px;
  background: #f7fbff;
}

.faq-download-cta p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.faq-download-cta .solid-button {
  justify-self: start;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 8px;
}

@media (min-width: 760px) {
  .faq-seo-page {
    gap: 52px;
    width: min(1040px, calc(100% - 64px));
    margin-top: 42px;
    margin-bottom: 104px;
  }

  .faq-seo-hero {
    padding: 54px 64px;
  }

  .faq-layout {
    grid-template-columns: 292px minmax(0, 1fr);
    align-items: start;
    gap: 58px;
  }

  .faq-index-panel {
    position: sticky;
    top: 92px;
  }

  .faq-group-stack {
    gap: 42px;
  }

  .faq-group {
    gap: 18px;
  }

  .faq-topic-grid button,
  .faq-topic-grid a {
    padding: 14px 0;
    border-width: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .faq-topic-grid button.is-active {
    background: #f4f9ff;
    box-shadow: inset 3px 0 0 var(--brand);
    padding-left: 12px;
  }

  .faq-topic-grid button:last-child,
  .faq-topic-grid a:last-child {
    border-bottom: 1px solid var(--line);
  }

  .faq-download-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 38px 44px;
  }
}

.terms-summary-list {
  max-width: 820px;
  margin: 0 auto;
}

.terms-summary-list article {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.terms-summary-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.terms-summary-list strong {
  display: block;
  margin-bottom: 8px;
}

.about-principle-section,
.career-lane-section,
.api-flow-section,
.brand-kit-section {
  margin: clamp(40px, 7vw, 76px) auto 0;
}

.about-principle-section,
.career-lane-section,
.api-flow-section {
  display: grid;
  gap: 28px;
}

.principle-lead,
.career-lane-head,
.api-flow-head {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.principle-lead h2,
.career-lane-head h2,
.api-flow-head h2,
.brand-rules h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.principle-lead p,
.career-lane-head p,
.api-flow-head p,
.brand-rules p,
.principle-list p,
.career-lanes p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.principle-list,
.career-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.principle-list article,
.career-lanes article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 176px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.principle-list strong,
.career-lanes strong,
.api-flow-list strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.career-lanes span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #eef6ff;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.api-flow-list {
  display: grid;
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.api-flow-list li {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.api-flow-list span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.brand-kit-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.brand-preview-card {
  display: grid;
  place-items: center;
  gap: 18px;
  min-height: 240px;
  border: 1px solid #dcecff;
  border-radius: 8px;
  background: #ffffff;
}

.brand-preview-card img {
  display: block;
  width: min(210px, 72%);
  height: auto;
}

.brand-preview-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-rules {
  display: grid;
  gap: 12px;
}

.brand-page {
  background: #ffffff;
}

.brand-hero,
.brand-overview-section,
.brand-assets-section,
.brand-usage-section,
.brand-color-section,
.brand-cta-section {
  padding-right: clamp(20px, 6vw, 92px);
  padding-left: clamp(20px, 6vw, 92px);
}

.brand-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(56px, 8vw, 98px);
  background: #f7fbff;
}

.brand-hero-copy {
  display: grid;
  justify-items: start;
  gap: 16px;
  max-width: 620px;
  min-width: 0;
}

.brand-hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.4vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.brand-hero-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.brand-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.brand-hero-board {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.brand-logo-stage {
  display: grid;
  min-height: clamp(220px, 28vw, 330px);
  place-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #dcecff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(64, 142, 232, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(64, 142, 232, 0.07) 1px, transparent 1px),
    #ffffff;
  background-size: 30px 30px;
  box-shadow: 0 18px 44px rgba(21, 49, 88, 0.1);
}

.brand-logo-stage img {
  width: min(280px, 76%);
  height: auto;
}

.brand-resource-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.brand-resource-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(18, 36, 66, 0.05);
}

.brand-resource-row img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.brand-resource-row span:first-child img {
  width: 42px;
  height: auto;
}

.brand-overview-section,
.brand-assets-section,
.brand-usage-section,
.brand-color-section,
.brand-cta-section {
  padding-top: clamp(52px, 7vw, 88px);
  padding-bottom: clamp(52px, 7vw, 88px);
}

.brand-section-head {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto clamp(30px, 5vw, 48px);
  text-align: center;
}

.brand-section-head h2,
.brand-assets-section h2,
.brand-color-section h2,
.brand-cta-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
}

.brand-section-head p,
.brand-assets-section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.76;
}

.brand-overview-grid,
.brand-usage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.brand-overview-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 360px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(18, 36, 66, 0.07);
}

.brand-card-visual {
  display: grid;
  min-height: 136px;
  margin-bottom: 8px;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
}

.brand-card-visual-logo {
  border: 1px solid #dcecff;
  background: #f8fbff;
}

.brand-card-visual-logo img {
  width: min(200px, 72%);
}

.brand-card-visual-fans {
  align-content: center;
  gap: 4px;
  background: #12243f;
  color: #ffffff;
}

.brand-card-visual-fans strong {
  font-size: 26px;
  line-height: 1;
}

.brand-card-visual-fans span {
  color: #81c7ff;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.brand-card-visual-banner {
  padding: 18px;
  background: #1f8ff2;
}

.brand-safe-area {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 104px;
  place-items: center;
  border: 2px dashed rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

.brand-overview-grid article > span {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.4;
  text-transform: uppercase;
}

.brand-overview-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: 0;
}

.brand-overview-grid p,
.brand-usage-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.brand-overview-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 4px;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 850;
}

.brand-assets-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: #f7fbff;
}

.brand-assets-section > div:first-child {
  display: grid;
  gap: 14px;
}

.brand-assets-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 14px;
}

.brand-assets-panel figure {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 176px;
  margin: 0;
  padding: 24px;
  border: 1px solid #dcecff;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(18, 36, 66, 0.06);
}

.brand-assets-panel figure:first-child {
  grid-row: span 2;
}

.brand-assets-panel img {
  width: min(190px, 78%);
  max-height: 82px;
  object-fit: contain;
}

.brand-assets-panel figure:first-child img {
  width: min(260px, 82%);
  max-height: 104px;
}

.brand-assets-panel figcaption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.brand-usage-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.brand-usage-grid strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.brand-color-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: #f8fafc;
}

.brand-color-section > div:first-child {
  display: grid;
  gap: 12px;
}

.brand-color-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.brand-color-grid span {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 150px;
  padding: 18px;
  border-radius: 8px;
  background: var(--swatch);
  color: #ffffff;
  overflow: hidden;
}

.brand-color-grid span::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22));
}

.brand-color-grid b,
.brand-color-grid em {
  position: relative;
  z-index: 1;
}

.brand-color-grid b {
  font-size: 16px;
  line-height: 1.3;
}

.brand-color-grid em {
  margin-top: 4px;
  font-size: 13px;
  font-style: normal;
  font-weight: 750;
  opacity: 0.88;
}

.brand-cta-section {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
  background: #ffffff;
}

.imtoken-brand-page {
  background: #ffffff;
}

.imtoken-brand-hero,
.imtoken-brand-block,
.imtoken-brand-assets {
  padding-right: 16px;
  padding-left: 16px;
}

.imtoken-brand-hero {
  display: grid;
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 46px;
  background: #f6fbff;
}

.imtoken-brand-hero h1 {
  max-width: 6em;
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}

.imtoken-brand-hero p {
  max-width: 21em;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.imtoken-brand-hero .solid-button {
  width: 100%;
  min-height: 48px;
}

.imtoken-brand-hero-logo {
  display: grid;
  min-height: 156px;
  margin-top: 4px;
  place-items: center;
  border: 1px solid #dcecff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(64, 142, 232, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(64, 142, 232, 0.08) 1px, transparent 1px),
    #ffffff;
  background-size: 22px 22px;
  box-shadow: 0 14px 34px rgba(21, 49, 88, 0.08);
}

.imtoken-brand-hero-logo img {
  width: min(220px, 70%);
}

.imtoken-brand-block {
  display: grid;
  gap: 18px;
  padding-top: 46px;
  padding-bottom: 46px;
  border-bottom: 1px solid #edf2f7;
}

.imtoken-brand-block-dark {
  background: #10233d;
}

.imtoken-brand-copy {
  display: grid;
  gap: 9px;
}

.imtoken-brand-copy h2,
.imtoken-brand-assets h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.16;
  letter-spacing: 0;
}

.imtoken-brand-block-dark .imtoken-brand-copy h2 {
  color: #ffffff;
}

.imtoken-brand-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.imtoken-brand-block-dark .imtoken-brand-copy p {
  color: #b8c7d8;
}

.imtoken-brand-showcase {
  display: grid;
  min-height: 170px;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
}

.imtoken-brand-showcase-logo {
  border: 1px solid #dcecff;
  background: #f8fbff;
}

.imtoken-brand-showcase-logo img {
  width: min(220px, 72%);
}

.imtoken-brand-showcase-fans {
  align-content: center;
  gap: 4px;
  background:
    radial-gradient(circle at 78% 22%, rgba(129, 199, 255, 0.22), transparent 32%),
    #0d1d32;
  color: #ffffff;
}

.imtoken-brand-showcase-fans strong {
  font-size: 26px;
  line-height: 1;
}

.imtoken-brand-showcase-fans span {
  color: #81c7ff;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.imtoken-brand-showcase-materials {
  padding: 18px;
  background: #2f93ee;
}

.imtoken-brand-showcase-materials > div {
  display: grid;
  width: 100%;
  min-height: 132px;
  place-items: center;
  border: 2px dashed rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-align: center;
}

.imtoken-brand-showcase-materials span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.imtoken-brand-showcase-materials b {
  font-size: 18px;
  line-height: 1.3;
}

.imtoken-brand-assets {
  display: grid;
  gap: 14px;
  padding-top: 46px;
  padding-bottom: 56px;
}

.imtoken-brand-asset-list {
  display: grid;
  gap: 10px;
}

.imtoken-brand-asset-list a {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 68px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 820;
  box-shadow: 0 10px 28px rgba(18, 36, 66, 0.05);
}

.imtoken-brand-asset-list img {
  max-width: 52px;
  max-height: 34px;
  object-fit: contain;
}

@media (min-width: 860px) {
  .imtoken-brand-hero,
  .imtoken-brand-block,
  .imtoken-brand-assets {
    padding-right: clamp(40px, 8vw, 110px);
    padding-left: clamp(40px, 8vw, 110px);
  }

  .imtoken-brand-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
    gap: clamp(36px, 7vw, 84px);
    align-items: center;
    padding-top: 86px;
    padding-bottom: 94px;
  }

  .imtoken-brand-hero h1 {
    font-size: clamp(58px, 6vw, 78px);
  }

  .imtoken-brand-hero p {
    font-size: 19px;
  }

  .imtoken-brand-hero .solid-button {
    width: auto;
    justify-self: start;
  }

  .imtoken-brand-hero-logo {
    grid-row: 1 / span 4;
    grid-column: 2;
    min-height: 320px;
  }

  .imtoken-brand-block {
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
    gap: clamp(36px, 7vw, 84px);
    align-items: center;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .imtoken-brand-copy h2,
  .imtoken-brand-assets h2 {
    font-size: clamp(36px, 4vw, 48px);
  }

  .imtoken-brand-copy p {
    font-size: 17px;
  }

  .imtoken-brand-showcase {
    min-height: 280px;
  }

  .imtoken-brand-assets {
    padding-top: 76px;
    padding-bottom: 92px;
  }

  .imtoken-brand-asset-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.imtoken-brand-original {
  background: #ffffff;
  color: var(--ink);
}

.brand-original-hero,
.brand-original-nav,
.brand-original-section,
.brand-original-download {
  width: 100%;
  max-width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  overflow: hidden;
}

.brand-original-hero {
  display: grid;
  gap: 16px;
  padding-top: 32px;
  padding-bottom: 28px;
  background: #f6fbff;
}

.brand-original-kicker,
.brand-original-copy span,
.brand-original-download span {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-original-hero h1 {
  max-width: 6.2em;
  margin: 0;
  color: #111827;
  font-size: 44px;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

.brand-original-hero p {
  max-width: 21em;
  margin: 0;
  color: #5f6f7a;
  font-size: 16px;
  line-height: 1.72;
}

.brand-original-stage {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.brand-original-logo-card {
  display: grid;
  min-height: 154px;
  place-items: center;
  border: 1px solid #dcecff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(64, 142, 232, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(64, 142, 232, 0.08) 1px, transparent 1px),
    #ffffff;
  background-size: 22px 22px;
  box-shadow: 0 14px 34px rgba(21, 49, 88, 0.08);
}

.brand-original-logo-card img {
  width: min(220px, 72%);
}

.brand-original-tags {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.brand-original-tags span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #253243;
  font-size: 12px;
  font-weight: 850;
}

.brand-original-nav {
  position: sticky;
  top: 82px;
  z-index: 4;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf2f7;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.brand-original-nav a {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid #e3edf8;
  border-radius: 8px;
  background: #f8fbff;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 850;
}

.brand-original-section {
  display: grid;
  gap: 18px;
  padding-top: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid #edf2f7;
}

.brand-original-section-dark {
  background: #10233d;
}

.brand-original-copy {
  display: grid;
  gap: 9px;
}

.brand-original-copy h2,
.brand-original-download h2 {
  margin: 0;
  color: #121826;
  font-size: 29px;
  line-height: 1.14;
  letter-spacing: 0;
}

.brand-original-section-dark .brand-original-copy h2 {
  color: #ffffff;
}

.brand-original-copy p {
  margin: 0;
  color: #5f6f7a;
  font-size: 15px;
  line-height: 1.72;
}

.brand-original-section-dark .brand-original-copy p {
  color: #b8c7d8;
}

.brand-original-visual {
  display: grid;
  min-height: 172px;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
}

.brand-original-visual small {
  color: #7a8898;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.brand-original-visual-logo {
  gap: 16px;
  border: 1px solid #dcecff;
  background: #f8fbff;
}

.brand-original-visual-logo img {
  width: min(220px, 72%);
}

.brand-original-visual-fans {
  align-content: center;
  gap: 3px;
  background:
    radial-gradient(circle at 82% 18%, rgba(129, 199, 255, 0.28), transparent 32%),
    linear-gradient(145deg, #0b1a2d 0%, #143558 100%);
  color: #ffffff;
}

.brand-original-visual-fans b {
  font-size: 24px;
  line-height: 1;
}

.brand-original-visual-fans strong {
  color: #7fc6ff;
  font-size: 50px;
  line-height: 1;
}

.brand-original-visual-fans small {
  color: #9cc8eb;
}

.brand-original-visual-materials {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
    #328fe5;
}

.brand-original-visual-materials > div {
  display: grid;
  width: 100%;
  min-height: 136px;
  place-items: center;
  border: 2px dashed rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  text-align: center;
}

.brand-original-visual-materials em {
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.brand-original-visual-materials b {
  font-size: 28px;
}

.brand-original-visual-materials strong {
  font-size: 17px;
}

.brand-original-download {
  display: grid;
  gap: 15px;
  padding-top: 44px;
  padding-bottom: 56px;
}

.brand-original-download > div:first-child {
  display: grid;
  gap: 8px;
}

.brand-original-download-list {
  display: grid;
  gap: 10px;
}

.brand-original-download-list a {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 12px 14px;
  border: 1px solid #e7edf5;
  border-radius: 8px;
  background: #ffffff;
  color: #121826;
  font-size: 16px;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(18, 36, 66, 0.05);
}

.brand-original-download-list img {
  max-width: 58px;
  max-height: 34px;
  object-fit: contain;
}

@media (min-width: 860px) {
  .brand-original-hero,
  .brand-original-nav,
  .brand-original-section,
  .brand-original-download {
    padding-right: clamp(40px, 8vw, 112px);
    padding-left: clamp(40px, 8vw, 112px);
  }

  .brand-original-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
    gap: clamp(40px, 7vw, 92px);
    align-items: center;
    padding-top: 82px;
    padding-bottom: 86px;
  }

  .brand-original-hero h1 {
    font-size: clamp(58px, 6vw, 78px);
  }

  .brand-original-hero p {
    font-size: 19px;
  }

  .brand-original-stage {
    grid-row: 1 / span 4;
    grid-column: 2;
  }

  .brand-original-logo-card {
    min-height: 320px;
  }

  .brand-original-nav {
    top: 82px;
    display: flex;
    justify-content: center;
  }

  .brand-original-tags {
    display: grid;
  }

  .brand-original-nav a {
    min-width: 140px;
  }

  .brand-original-section {
    grid-template-columns: minmax(0, 0.82fr) minmax(330px, 0.78fr);
    gap: clamp(40px, 7vw, 92px);
    align-items: center;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .brand-original-copy h2,
  .brand-original-download h2 {
    font-size: clamp(38px, 4vw, 52px);
  }

  .brand-original-copy p {
    max-width: 520px;
    font-size: 17px;
  }

  .brand-original-visual {
    min-height: 290px;
  }

  .brand-original-download {
    padding-top: 76px;
    padding-bottom: 92px;
  }

  .brand-original-download-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.terms-doc-page {
  background: #f4f7fb;
}

.terms-doc-article {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0 72px;
  color: #26364d;
}

.terms-doc-header {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-bottom: 26px;
  text-align: center;
}

.terms-doc-header h1 {
  margin: 0;
  color: #152238;
  font-size: 20px;
  font-weight: 760;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.terms-doc-header p {
  margin: 0;
  justify-self: start;
  color: #627189;
  font-size: 13px;
  line-height: 1.7;
}

.terms-doc-section {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}

.terms-doc-section h2 {
  margin: 0;
  color: #17243a;
  font-size: 15px;
  font-weight: 780;
  line-height: 1.55;
}

.terms-doc-section p,
.terms-doc-section li {
  margin: 0;
  color: #3e4c62;
  font-size: 13px;
  line-height: 1.9;
}

.terms-doc-section ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 20px;
}

.doc-page {
  width: min(860px, calc(100% - 64px));
  margin: clamp(54px, 8vw, 92px) auto clamp(76px, 10vw, 118px);
}

.doc-article {
  display: grid;
  gap: 34px;
}

.doc-header {
  display: grid;
  gap: 16px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.doc-header h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.12;
  letter-spacing: 0;
}

.doc-header p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.82;
}

.doc-toc {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.doc-toc a {
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.5;
}

.doc-section {
  display: grid;
  gap: 14px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.doc-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  letter-spacing: 0;
}

.doc-section p,
.doc-section li {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.88;
}

.doc-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.security-page {
  display: grid;
  gap: 42px;
  width: min(1040px, calc(100% - 32px));
  margin: 34px auto 78px;
}

.security-hero-panel {
  display: grid;
  gap: 20px;
  min-height: 0;
  padding: 34px 24px 24px;
  border-radius: 8px;
  background: #f4fbff;
  overflow: hidden;
}

.security-hero-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.security-hero-copy h1 {
  margin: 0;
  color: #17212f;
  font-size: clamp(30px, 8vw, 42px);
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: 0;
}

.security-hero-copy p {
  margin: 0;
  color: #647386;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.62;
}

.security-hero-art {
  position: relative;
  min-height: 210px;
}

.security-hero-illustration {
  position: absolute;
  right: -24px;
  bottom: -22px;
  width: min(330px, 94%);
  height: auto;
}

.security-shield-mark {
  position: absolute;
  right: 87px;
  top: 28px;
  width: 82px;
  height: 92px;
  border: 2px solid #202936;
  border-radius: 28px 28px 38px 38px;
  background: linear-gradient(145deg, #dceeff, #9fc8ff);
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.7),
    0 18px 34px rgba(49, 126, 209, 0.16);
  clip-path: polygon(50% 0, 92% 15%, 92% 58%, 50% 100%, 8% 58%, 8% 15%);
}

.security-shield-mark::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 30px;
  width: 27px;
  height: 15px;
  border-right: 4px solid rgba(255, 255, 255, 0.92);
  border-bottom: 4px solid rgba(255, 255, 255, 0.92);
  transform: rotate(40deg);
}

.security-coin {
  position: absolute;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid #dce9f7;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(47, 104, 164, 0.13);
}

.security-coin-eth {
  left: 4px;
  bottom: 70px;
}

.security-coin-btc {
  left: 52px;
  bottom: 34px;
}

.security-coin-tron {
  right: 12px;
  bottom: 116px;
}

.security-focus-strip {
  display: grid;
  gap: 12px;
}

.security-focus-strip article,
.security-token-grid article {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid #e5edf6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(22, 66, 112, 0.06);
}

.security-focus-strip span {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.security-focus-strip strong,
.security-token-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.35;
}

.security-focus-strip p,
.security-section-head p,
.security-token-grid p,
.security-check-list span {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.security-token-section,
.security-action-section,
.security-faq-section {
  display: grid;
  gap: 22px;
}

.security-section-head {
  display: grid;
  gap: 10px;
}

.security-section-head h2,
.security-action-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 7vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.security-token-grid {
  display: grid;
  gap: 12px;
}

.security-token-grid article {
  grid-template-columns: 48px 1fr;
  align-items: start;
}

.security-token-grid img {
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 50%;
  background: #f3f8ff;
}

.security-check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.security-check-list li {
  display: grid;
  gap: 7px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.security-check-list strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.4;
}

.security-faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.security-faq-list details {
  border-bottom: 1px solid var(--line);
}

.security-faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.42;
}

.security-faq-list p {
  margin: -2px 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
}

.security-download-cta {
  display: grid;
  gap: 22px;
  padding: 26px 22px;
  border: 1px solid #dce9f7;
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 8%, rgba(45, 139, 255, 0.12), transparent 34%),
    #f7fbff;
}

.security-download-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 7vw, 38px);
  line-height: 1.2;
  letter-spacing: 0;
}

.security-download-cta p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.security-download-cta .solid-button {
  justify-self: start;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 8px;
}

@media (min-width: 760px) {
  .security-page {
    gap: 58px;
    width: min(1048px, calc(100% - 64px));
    margin-top: 34px;
    margin-bottom: 104px;
  }

  .security-hero-panel {
    grid-template-columns: 0.82fr 1fr;
    align-items: center;
    min-height: 388px;
    padding: 54px 70px 48px 86px;
  }

  .security-hero-copy h1 {
    font-size: 30px;
  }

  .security-hero-copy p {
    font-size: 18px;
  }

  .security-hero-art {
    min-height: 286px;
  }

  .security-hero-illustration {
    right: -8px;
    bottom: -36px;
    width: min(440px, 100%);
  }

  .security-shield-mark {
    right: 132px;
    top: 35px;
    width: 104px;
    height: 116px;
  }

  .security-shield-mark::after {
    left: 35px;
    top: 38px;
    width: 34px;
    height: 19px;
  }

  .security-coin {
    width: 42px;
    height: 42px;
    padding: 9px;
  }

  .security-coin-eth {
    left: 30px;
    bottom: 86px;
  }

  .security-coin-btc {
    left: 88px;
    bottom: 42px;
  }

  .security-coin-tron {
    right: 34px;
    bottom: 138px;
  }

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

  .security-focus-strip article,
  .security-token-grid article {
    padding: 24px;
  }

  .security-token-section {
    grid-template-columns: 0.72fr 1fr;
    align-items: start;
    gap: 42px;
  }

  .security-token-grid {
    gap: 14px;
  }

  .security-action-section {
    grid-template-columns: 0.58fr 1fr;
    align-items: start;
    gap: 54px;
  }

  .security-faq-section {
    grid-template-columns: 0.58fr 1fr;
    align-items: start;
    gap: 54px;
  }

  .security-check-list li {
    grid-template-columns: 180px 1fr;
    gap: 26px;
    padding: 22px 0;
  }

  .security-download-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 38px 44px;
  }
}

.layer2-article-page {
  background: #ffffff;
}

.layer2-doc-cta {
  background: #f7f9fb;
  border-bottom: 1px solid #edf1f5;
}

.layer2-doc-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(36px, 8vw, 120px);
  align-items: center;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(42px, 5vw, 66px) 0;
}

.layer2-doc-cta-copy {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.layer2-doc-cta-copy h1 {
  margin: 0;
  color: #1d2733;
  font-size: clamp(34px, 4.4vw, 42px);
  line-height: 1.15;
  letter-spacing: 0;
}

.layer2-doc-cta-copy p {
  margin: 0;
  color: #87919f;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
}

.layer2-doc-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 5px;
  background: #438de2;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(67, 141, 226, 0.18);
}

.layer2-doc-cta-art {
  position: relative;
  min-height: 170px;
}

.cta-window {
  position: absolute;
  top: 0;
  left: 76px;
  z-index: 2;
  width: 178px;
  height: 92px;
  border: 2px solid #7a8794;
  border-radius: 6px;
  background: #c5ddfb;
  box-shadow: 5px 5px 0 rgba(67, 141, 226, 0.16);
}

.cta-window::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 26px;
  left: 26px;
  height: 2px;
  background: #7a8794;
}

.cta-window span {
  position: absolute;
  top: 12px;
  width: 8px;
  height: 8px;
  border: 2px solid #7a8794;
  border-radius: 50%;
  background: #f7f9fb;
}

.cta-window span:nth-child(1) {
  left: 20px;
}

.cta-window span:nth-child(2) {
  left: 38px;
}

.cta-window span:nth-child(3) {
  left: 56px;
}

.cta-window i {
  position: absolute;
  right: 74px;
  bottom: 26px;
  width: 26px;
  height: 26px;
  background: #596b7d;
  box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.28);
}

.cta-panel {
  position: absolute;
  right: 36px;
  bottom: 0;
  width: 182px;
  height: 126px;
  border: 2px solid #7a8794;
  border-radius: 6px;
  background: #ffffff;
}

.cta-panel::before {
  content: "";
  position: absolute;
  top: -34px;
  left: -36px;
  width: 30px;
  height: 76px;
  border-bottom: 2px solid #7a8794;
  border-left: 2px solid #7a8794;
}

.cta-panel b {
  position: absolute;
  right: 22px;
  height: 8px;
  border: 2px solid #7a8794;
  border-radius: 999px;
  background: #ffffff;
}

.cta-panel b:nth-child(1) {
  bottom: 54px;
  width: 54px;
}

.cta-panel b:nth-child(2) {
  bottom: 28px;
  width: 100px;
}

.cta-arrow {
  position: absolute;
  top: 3px;
  right: 42px;
  width: 62px;
  height: 52px;
  border-top: 2px solid #7a8794;
  border-right: 2px solid #7a8794;
  border-radius: 0 34px 0 0;
}

.cta-arrow::before,
.cta-arrow::after {
  content: "";
  position: absolute;
  top: -7px;
  left: -3px;
  width: 16px;
  height: 2px;
  background: #7a8794;
  transform-origin: left center;
}

.cta-arrow::before {
  transform: rotate(38deg);
}

.cta-arrow::after {
  transform: rotate(-38deg);
}

.cta-dot {
  position: absolute;
  left: 0;
  bottom: 38px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #edf3fb;
}

.cta-triangle {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: 0;
  height: 0;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  border-bottom: 34px solid #edf3fb;
  transform: rotate(180deg);
}

.layer2-guide-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 850px);
  gap: clamp(38px, 6vw, 72px);
  align-items: start;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 82px) 0 clamp(82px, 10vw, 120px);
}

.layer2-guide-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
  padding-top: 6px;
  border-right: 1px solid #eef1f5;
}

.layer2-guide-sidebar h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.layer2-guide-sidebar nav {
  display: grid;
  gap: 4px;
  padding-right: 18px;
}

.layer2-guide-sidebar button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 42px;
  padding: 8px 12px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #65717f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.layer2-guide-sidebar button:hover,
.layer2-guide-sidebar button.active {
  background: #eef5ff;
  color: #2d7fc4;
}

.network-icon {
  display: inline-grid;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #f3f6f9;
  overflow: hidden;
}

.network-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

.layer2-guide-article {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.layer2-guide-content {
  display: grid;
  gap: 20px;
}

.layer2-guide-article h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 34px);
  line-height: 1.25;
  letter-spacing: 0;
}

.layer2-guide-banner {
  display: grid;
  min-height: clamp(210px, 27vw, 310px);
  margin: 0 0 8px;
  place-items: center;
  background: #b7e9fb;
  overflow: hidden;
}

.guide-card-visual {
  position: relative;
  display: grid;
  width: min(360px, 70%);
  min-height: 190px;
  place-items: center;
}

.guide-wallet-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(250px, 100%);
  padding: 32px 30px;
  border: 3px solid #357bd7;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #eef6ff 100%);
  box-shadow: 34px 22px 0 #6aa8f4;
  transform: rotate(2deg);
}

.guide-wallet-card span {
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-wallet-card strong {
  color: #7eb9ff;
  font-size: 24px;
  letter-spacing: 0;
}

.guide-coin,
.guide-check {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
}

.guide-coin {
  left: 5%;
  bottom: 18%;
  width: 60px;
  height: 60px;
  border: 5px solid #f7d354;
  background: #fff5a6;
  color: #d2a904;
  font-size: 16px;
}

.guide-check {
  right: 7%;
  top: 24%;
  width: 54px;
  height: 54px;
  border: 5px solid #ffffff;
  background: #2d7fc4;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
}

.layer2-guide-article p {
  margin: 0;
  color: #606c7a;
  font-size: 15px;
  line-height: 1.95;
}

.layer2-guide-article a,
.layer2-guide-article p a {
  color: #2788c9;
  font-weight: 800;
}

.layer2-guide-section {
  display: grid;
  gap: 14px;
  padding-top: 10px;
}

.layer2-guide-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.3;
  letter-spacing: 0;
}

.layer2-guide-section h2 + p {
  margin-top: 8px;
}

.local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.local-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
}

.local-links a:hover {
  border-color: rgba(64, 142, 232, 0.38);
  color: var(--brand-dark);
}

.seo-internal-section {
  width: min(1120px, calc(100% - 40px));
  margin: clamp(58px, 7vw, 96px) auto;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.seo-internal-section .section-head,
.seo-internal-section > p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.seo-internal-section h2 {
  margin: 6px 0 12px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.22;
  letter-spacing: 0;
}

.seo-internal-section p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.seo-link-grid a {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.seo-link-grid strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.seo-link-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.seo-link-grid a:hover {
  border-color: rgba(64, 142, 232, 0.4);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(18, 36, 66, 0.08);
}

.public-chain-page {
  background: #ffffff;
}

.public-chain-hero,
.chain-network-section,
.chain-feature-section,
.chain-safety-section,
.chain-faq-section,
.chain-cta-section {
  padding-right: clamp(20px, 6vw, 92px);
  padding-left: clamp(20px, 6vw, 92px);
}

.public-chain-hero {
  display: grid;
  justify-items: center;
  gap: 40px;
  padding-top: clamp(76px, 8vw, 118px);
  padding-bottom: clamp(82px, 9vw, 132px);
  background: #ffffff;
  text-align: center;
}

.public-chain-copy {
  display: grid;
  justify-items: center;
  max-width: 780px;
}

.public-chain-copy h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: 0;
}

.public-chain-copy p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.78;
}

.public-chain-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 34px;
}

.chain-network-section,
.chain-feature-section,
.chain-safety-section,
.chain-faq-section,
.chain-cta-section {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 112px);
  background: #ffffff;
}

.chain-network-grid,
.chain-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.chain-network-grid article,
.chain-feature-grid article {
  display: grid;
  justify-items: center;
  min-height: 178px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(18, 36, 66, 0.06);
  text-align: center;
}

.chain-path-icon {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border: 1px solid #eef2f6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(18, 36, 66, 0.06);
}

.chain-path-icon img {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(18, 36, 66, 0.12);
}

.chain-network-grid strong,
.chain-feature-grid h3 {
  display: block;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.28;
}

.chain-network-grid p,
.chain-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.chain-safety-section {
  display: grid;
  justify-items: center;
  gap: 0;
  padding-top: clamp(92px, 9vw, 128px);
  padding-bottom: clamp(82px, 8vw, 112px);
  text-align: center;
}

.chain-safety-head,
.chain-check-list {
  width: min(780px, 100%);
}

.chain-safety-head {
  display: grid;
  justify-items: center;
  padding-bottom: 42px;
  border-bottom: 1px solid #eef2f5;
  text-align: center;
}

.chain-safety-head .eyebrow {
  margin-bottom: 10px;
  color: #2f85cf;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.chain-safety-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.14;
}

.chain-safety-head p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.chain-check-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chain-check-list li {
  display: grid;
  grid-template-columns: 58px minmax(120px, 168px) 1fr;
  align-items: center;
  gap: 22px;
  min-height: 104px;
  padding: 26px 0;
  border-bottom: 1px solid #eef2f5;
  text-align: left;
}

.check-index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #dcecff;
  border-radius: 50%;
  background: #f4f9ff;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.chain-check-list strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.chain-check-list span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.chain-faq-section {
  display: grid;
  justify-items: center;
  border-top: 1px solid #eef2f5;
}

.chain-faq-head,
.chain-faq-list {
  width: min(860px, 100%);
}

.chain-faq-head {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 28px;
  text-align: center;
}

.chain-faq-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.14;
  letter-spacing: 0;
}

.chain-faq-head p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.chain-faq-list {
  display: grid;
  gap: 12px;
}

.chain-faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(18, 36, 66, 0.05);
}

.chain-faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.chain-faq-list p {
  margin: -4px 22px 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.chain-cta-section {
  display: grid;
  justify-items: center;
  padding-top: clamp(48px, 6vw, 76px);
  background: #f6f9fc;
  text-align: center;
}

.chain-cta-copy {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(760px, 100%);
}

.chain-cta-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.14;
  letter-spacing: 0;
}

.chain-cta-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.chain-cta-copy .solid-button {
  margin-top: 8px;
}

.wallet-phone {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: 214px;
  min-height: 406px;
  padding: 14px;
  border: 2px solid #26334d;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 18px 38px rgba(34, 47, 75, 0.16);
}

.wallet-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 48px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: #dce4ef;
  transform: translateX(-50%);
  pointer-events: none;
}

.network-panel {
  position: absolute;
  z-index: 1;
  right: 158px;
  top: 56px;
  width: 218px;
  min-height: 292px;
  padding: 18px;
  border: 2px solid #33415d;
  border-radius: 18px;
  background: rgba(246, 249, 253, 0.96);
  box-shadow: 0 16px 36px rgba(44, 62, 93, 0.1);
}

.network-panel span {
  display: block;
  margin-bottom: 12px;
  color: #7b8797;
  font-size: 11px;
  font-weight: 700;
}

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

.network-grid i {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 9px;
  background: #ffffff;
  color: #738091;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(37, 55, 84, 0.06);
}

.network-panel em {
  display: block;
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  background: #ffffff;
  color: #7b8797;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.phone-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0 10px;
}

.phone-top span,
.phone-top button {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 7px;
  background: #eef4fb;
}

.phone-top span::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  border-radius: 4px;
  background: var(--brand);
}

.phone-top strong {
  color: #253348;
  font-size: 12px;
}

.phone-top button {
  position: relative;
}

.phone-top button::before,
.phone-top button::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  height: 1px;
  border-radius: 999px;
  background: #111827;
}

.phone-top button::before {
  top: 8px;
}

.phone-top button::after {
  bottom: 8px;
}

.balance-card {
  position: relative;
  padding: 13px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2377da, #49b9fa);
  color: #ffffff;
  overflow: hidden;
}

.balance-card::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -20px;
  width: 82px;
  height: 82px;
  border: 16px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.balance-card span,
.balance-card small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.balance-card strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 18px;
  letter-spacing: 0;
}

.balance-card span,
.balance-card small {
  font-size: 10px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin: 12px 0;
}

.quick-actions span {
  display: grid;
  place-items: center;
  min-height: 35px;
  border: 0;
  border-radius: 9px;
  background: #f4f7fb;
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
}

.asset-list {
  display: grid;
  gap: 8px;
}

.asset-list div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 9px;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  background: #ffffff;
}

.asset-list strong {
  display: grid;
  gap: 2px;
  color: #253348;
  font-size: 12px;
}

.asset-list small {
  color: #8a96a7;
  font-size: 10px;
  font-weight: 600;
}

.asset-list em {
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
  font-size: 11px;
}

.coin {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.coin.eth {
  background: #6474ff;
}

.coin.btc {
  background: #f6a43a;
}

.coin.ton {
  background: #2ca7e0;
}

.coin.usdc {
  background: #2775ca;
}

.feature-section,
.showcase-section,
.chains-section,
.security-section,
.partner-section,
.contact-section,
.download-section,
.faq-section,
.site-footer {
  padding-right: clamp(20px, 6vw, 92px);
  padding-left: clamp(20px, 6vw, 92px);
}

.stat-band {
  margin-top: 0;
  padding: 72px clamp(20px, 6vw, 92px) 76px;
  background: #4c91dd;
  color: #ffffff;
}

.stat-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.stat-intro {
  display: grid;
  gap: 16px;
  margin-bottom: 42px;
}

.stat-intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 4.2vw, 46px);
  font-weight: 600;
  letter-spacing: 0;
}

.stat-intro p {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 640px;
  margin: 0;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

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

.stat-band article {
  display: grid;
  place-items: center;
  min-height: 152px;
  padding: 30px 22px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.stat-band strong {
  display: block;
  color: #ffffff;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.stat-band span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 15px;
  font-weight: 600;
}

.feature-section,
.chains-section,
.security-section,
.partner-section,
.contact-section,
.download-section,
.faq-section {
  padding-top: clamp(74px, 9vw, 124px);
  padding-bottom: clamp(74px, 9vw, 124px);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head .eyebrow,
.section-head.compact .eyebrow {
  justify-content: center;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.showcase-section {
  display: grid;
  gap: clamp(72px, 9vw, 118px);
  width: min(1060px, 100%);
  margin: 0 auto;
  padding-top: clamp(82px, 9vw, 116px);
  padding-bottom: clamp(82px, 9vw, 116px);
  background: #ffffff;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(360px, 0.98fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.showcase-art {
  position: relative;
  min-height: 290px;
}

.showcase-art img {
  display: block;
  width: min(440px, 100%);
  height: auto;
  margin: 0 auto;
}

.showcase-copy {
  text-align: left;
}

.showcase-copy h2 {
  margin: 0 0 10px;
  color: #2f3338;
  font-size: clamp(27px, 2.8vw, 34px);
  font-weight: 500;
  line-height: 1.25;
}

.showcase-copy p {
  max-width: 470px;
  margin: 0;
  color: #9aa0a9;
  font-size: 17px;
  line-height: 1.58;
}

.showcase-metrics {
  display: flex;
  gap: 28px;
  margin-top: 28px;
}

.showcase-metrics div + div {
  padding-left: 28px;
  border-left: 1px solid #edf1f6;
}

.showcase-metrics strong,
.price-line strong {
  display: block;
  color: var(--brand);
  font-size: 30px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.showcase-metrics span,
.price-line span {
  display: block;
  margin-top: 10px;
  color: #a2a8b1;
  font-size: 14px;
}

.price-line {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: end;
  justify-content: start;
  gap: 18px;
  margin-top: 28px;
}

.price-line button {
  color: #a2a8b1;
  font-size: 14px;
  font-weight: 700;
}

.price-line button::after {
  content: ">";
  margin-left: 8px;
  color: #b7bdc7;
}

.line-phone {
  position: absolute;
  left: 110px;
  top: 20px;
  width: 96px;
  height: 176px;
  border: 2px solid #20242b;
  border-radius: 18px;
  background: #ffffff;
}

.line-phone::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 24px;
  height: 58px;
  border-radius: 6px;
  background: #3f92e9;
}

.line-phone::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 32px;
  width: 46px;
  height: 4px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 3px;
  box-shadow: 38px 24px 0 -1px rgba(255, 255, 255, 0.72);
}

.line-phone i {
  position: absolute;
  left: 48px;
  bottom: 0;
  width: 44px;
  height: 72px;
  border: 2px solid #20242b;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  background: #ffffff;
  transform: skewY(-34deg);
}

.mini-wallet {
  position: absolute;
  left: 192px;
  top: 112px;
  width: 96px;
  height: 76px;
  border: 2px solid #20242b;
  border-radius: 10px;
  background: #ffffff;
}

.mini-wallet::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 28px;
  width: 20px;
  height: 22px;
  border: 2px solid #20242b;
  border-left: 0;
  border-radius: 0 12px 12px 0;
}

.mini-wallet::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e9f2fb;
  box-shadow: 26px 0 0 #f6ece0, 52px 0 0 #eef2fb, 0 28px 0 #eef2fb, 26px 28px 0 #f6ece0, 52px 28px 0 #eef2fb;
}

.person {
  position: absolute;
  width: 94px;
  height: 150px;
}

.person::before,
.person::after {
  content: "";
  position: absolute;
}

.person-walk {
  left: 0;
  top: 54px;
}

.person-walk::before {
  left: 36px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #101319;
  box-shadow: 3px 14px 0 7px #ffffff, 3px 14px 0 9px #20242b;
}

.person-walk::after {
  left: 26px;
  top: 36px;
  width: 36px;
  height: 82px;
  border-left: 3px solid #20242b;
  border-bottom: 3px solid #20242b;
  background: linear-gradient(116deg, transparent 0 42%, #3f92e9 43% 72%, transparent 73%);
  transform: skewX(-16deg);
}

.line-phone.tall {
  left: 74px;
  top: 14px;
  height: 184px;
}

.line-phone.tall::before {
  top: 42px;
  height: 82px;
  background: linear-gradient(#f7f9fb, #ffffff);
}

.line-phone.tall::after {
  left: 28px;
  top: 72px;
  width: 48px;
  height: 3px;
  border: 0;
  background: #e7ebf0;
  box-shadow: 0 12px 0 #eef1f5, 0 24px 0 #eef1f5;
}

.coin-stack {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 70px;
  height: 28px;
  border-bottom: 3px solid #20242b;
}

.coin-stack::before,
.coin-stack::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 54px;
  height: 54px;
  border: 2px solid #20242b;
  border-radius: 50%;
  background: #ffffff;
}

.coin-stack::before {
  left: 6px;
  opacity: 0.35;
}

.coin-stack::after {
  left: 48px;
  color: #e7b24d;
  box-shadow: inset 0 0 0 8px #ffffff, inset 0 0 0 10px rgba(231, 178, 77, 0.42);
}

.key-card {
  position: absolute;
  left: 154px;
  top: 74px;
  width: 116px;
  height: 56px;
  border-radius: 8px;
  background: #2e3034;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.key-card::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 5px;
  height: 5px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 20px 0 -1px #ffffff;
}

.key-card::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 22px;
  width: 24px;
  height: 14px;
  border-radius: 8px;
  background: #ffffff;
}

.person-hold {
  left: 254px;
  top: 58px;
  transform: scale(0.88);
}

.person-hold::before {
  left: 30px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #101319;
  box-shadow: 4px 16px 0 8px #ffffff, 4px 16px 0 10px #20242b;
}

.person-hold::after {
  left: 26px;
  top: 42px;
  width: 42px;
  height: 90px;
  border-right: 3px solid #20242b;
  border-bottom: 3px solid #20242b;
  background: linear-gradient(105deg, transparent 0 42%, #3f92e9 43% 72%, transparent 73%);
}

.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.feature-grid article,
.contact-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.feature-grid h3,
.contact-grid h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.feature-grid p,
.contact-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.feature-icon,
.contact-icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto;
  border-radius: 14px;
  background: var(--surface-2);
}

.feature-icon::before,
.feature-icon::after,
.contact-icon::before,
.contact-icon::after {
  content: "";
  position: absolute;
}

.icon-wallet::before {
  inset: 12px 8px;
  border: 2px solid var(--brand-dark);
  border-radius: 7px;
}

.icon-wallet::after {
  right: 9px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.icon-dapp::before {
  inset: 11px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.icon-dapp::after {
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(38, 56, 184, 0.18);
}

.icon-swap::before {
  left: 11px;
  top: 15px;
  width: 24px;
  height: 2px;
  background: var(--brand-dark);
  box-shadow: 0 12px 0 var(--accent);
}

.icon-swap::after {
  right: 8px;
  top: 11px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--brand-dark);
  border-right: 2px solid var(--brand-dark);
  transform: rotate(45deg);
}

.icon-watch::before {
  inset: 9px 10px;
  border: 2px solid var(--brand-dark);
  border-radius: 12px;
}

.icon-watch::after {
  left: 20px;
  top: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warning);
}

.chain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.chain-grid span {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: #263241;
  font-weight: 800;
  text-align: center;
}

.ecosystem-logo-wall {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  overflow: hidden;
}

.eco-logo-wall-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.security-section {
  background: #101827;
  color: #ffffff;
}

.hardware-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hardware-card .eyebrow {
  color: #8ff0c7;
}

.hardware-card p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.hardware-device {
  display: grid;
  align-content: center;
  justify-self: center;
  width: min(360px, 100%);
  min-height: 460px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    #192233;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.28);
}

.hardware-device span {
  width: 72px;
  height: 72px;
  margin-bottom: 80px;
  border-radius: 18px;
  background: var(--brand);
}

.hardware-device strong {
  margin-bottom: 12px;
  font-size: 42px;
  letter-spacing: 0;
}

.hardware-device small {
  display: inline-grid;
  place-items: center;
  width: 110px;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 760;
}

dl {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}

dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

dt {
  font-weight: 850;
}

dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.contact-grid a,
.contact-grid button {
  display: inline-flex;
  justify-content: center;
  margin-top: 20px;
  color: var(--brand-dark);
  font-weight: 850;
}

.icon-community::before {
  left: 9px;
  top: 14px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 14px 0 0 var(--accent);
}

.icon-community::after {
  left: 10px;
  top: 29px;
  width: 25px;
  height: 8px;
  border-radius: 999px;
  background: rgba(8, 116, 80, 0.22);
}

.icon-feedback::before {
  inset: 12px 10px;
  border: 2px solid var(--brand-dark);
  border-radius: 8px;
}

.icon-feedback::after {
  left: 18px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--brand-dark);
  border-bottom: 2px solid var(--brand-dark);
  transform: skewY(-24deg);
}

.icon-business::before {
  left: 11px;
  top: 17px;
  width: 24px;
  height: 18px;
  border: 2px solid var(--accent);
  border-radius: 5px;
}

.icon-business::after {
  left: 18px;
  top: 12px;
  width: 10px;
  height: 6px;
  border: 2px solid var(--accent);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.download-hero,
.download-feature-strip,
.download-platform-section,
.download-steps-section,
.download-faq-section {
  padding-right: clamp(20px, 6vw, 92px);
  padding-left: clamp(20px, 6vw, 92px);
}

.download-hero {
  padding-top: clamp(68px, 8vw, 112px);
  padding-bottom: clamp(72px, 9vw, 120px);
  background: #ffffff;
}

.download-hero-inner {
  display: grid;
  justify-items: center;
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

.download-app-icon {
  width: clamp(108px, 12vw, 144px);
  height: clamp(108px, 12vw, 144px);
  border-radius: 24%;
  object-fit: cover;
}

.download-hero-inner h1 {
  margin: 18px 0 24px;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 44px);
  font-weight: 620;
  line-height: 1.05;
}

.download-hero-inner p {
  max-width: 980px;
  margin: 0;
  color: #7d858d;
  font-size: clamp(23px, 2.5vw, 31px);
  font-weight: 360;
  line-height: 1.55;
}

.download-actions {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 80px;
  align-items: center;
  gap: 12px;
  width: min(912px, 100%);
  margin-top: 30px;
}

.download-badge,
.download-qr-button {
  display: block;
  min-height: 0;
  border-radius: 8px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.download-badge {
  min-width: 0;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
}

.download-badge:hover,
.download-qr-button:hover {
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.16);
  transform: translateY(-2px);
}

.download-badge-image,
.download-qr-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.download-qr-button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.1);
}

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

.download-qr-popover {
  position: absolute;
  top: calc(100% + 26px);
  right: 0;
  z-index: 20;
  width: 286px;
}

.download-qr-panel {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 36px 28px 28px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 18px 45px rgba(17, 24, 39, 0.16),
    0 3px 12px rgba(17, 24, 39, 0.08);
}

.download-qr-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 30px;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 3px 0 0;
  background: #ffffff;
  box-shadow: -3px -3px 8px rgba(17, 24, 39, 0.04);
  transform: rotate(45deg);
}

.download-qr-code {
  display: block;
  width: 224px;
  height: 224px;
}

.download-qr-panel p {
  margin: 20px 0 0;
  color: #4f5965;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.download-feature-strip {
  padding-top: clamp(64px, 7vw, 92px);
  padding-bottom: clamp(62px, 7vw, 90px);
  background: #ffffff;
}

.download-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 8vw, 130px);
  width: min(840px, 100%);
  margin: 0 auto;
  text-align: center;
}

.download-feature-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
}

.download-feature-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: #949aa3;
}

.download-feature-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-feature-grid h2 {
  margin: 0 0 18px;
  color: #4f5660;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
}

.download-feature-grid p {
  margin: 0;
  color: #a0a7b0;
  font-size: 20px;
  font-weight: 320;
  line-height: 1.6;
}

.store-icon,
.platform-icon {
  position: relative;
  display: block;
  border-radius: 8px;
  background: transparent;
}

.store-icon {
  width: 42px;
  height: 42px;
}

.store-icon::before,
.store-icon::after,
.platform-icon::before,
.platform-icon::after {
  content: "";
  position: absolute;
}

.ios-store::before {
  inset: 10px 12px 8px;
  border-radius: 48% 48% 54% 54%;
  background: currentColor;
}

.ios-store::after {
  left: 23px;
  top: 6px;
  width: 8px;
  height: 12px;
  border-radius: 8px 8px 1px 8px;
  background: currentColor;
  transform: rotate(28deg);
}

.android-store::before {
  left: 9px;
  top: 14px;
  width: 25px;
  height: 18px;
  border-radius: 8px 8px 5px 5px;
  background: var(--accent);
}

.android-store::after {
  left: 14px;
  top: 9px;
  width: 14px;
  height: 10px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.download-hero-visual {
  position: relative;
  min-width: 0;
  min-height: 520px;
}

.download-hero-visual > img {
  width: min(660px, 116%);
  max-width: none;
  margin: 0 0 0 auto;
  transform: translateX(22px);
  filter: drop-shadow(0 28px 46px rgba(35, 82, 145, 0.14));
}

.download-platform-section {
  padding-top: clamp(72px, 8vw, 110px);
  padding-bottom: clamp(70px, 8vw, 108px);
  background: #ffffff;
}

.download-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.download-card-grid article {
  display: grid;
  align-content: start;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06);
}

.platform-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--brand);
}

.ios-platform::before {
  left: 14px;
  top: 6px;
  width: 24px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 9px;
}

.ios-platform::after {
  left: 24px;
  top: 39px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.android-platform::before {
  left: 14px;
  top: 6px;
  width: 24px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 9px;
}

.android-platform::after {
  left: 21px;
  top: 21px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.help-platform::before {
  left: 13px;
  top: 11px;
  width: 26px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.help-platform::after {
  content: "?";
  left: 0;
  top: 13px;
  width: 52px;
  color: currentColor;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.download-card-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.download-card-grid p {
  min-height: 82px;
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.72;
}

.download-card-grid .outline-button {
  justify-self: start;
}

.download-steps-section {
  padding-top: clamp(78px, 8vw, 118px);
  padding-bottom: clamp(78px, 8vw, 118px);
  background: #ffffff;
}

.download-steps-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.download-steps-copy h2 {
  max-width: 520px;
  color: var(--ink);
}

.download-steps-copy p {
  max-width: 470px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.74;
}

.download-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: setup-step;
}

.download-steps li {
  position: relative;
  min-height: 118px;
  padding: 24px 24px 24px 88px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.05);
  counter-increment: setup-step;
}

.download-steps li::before {
  content: counter(setup-step);
  position: absolute;
  left: 24px;
  top: 26px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #eaf3ff;
  color: var(--brand-dark);
  font-size: 20px;
  font-weight: 860;
}

.download-steps strong,
.download-steps span {
  display: block;
}

.download-steps strong {
  margin-bottom: 8px;
  font-size: 20px;
}

.download-steps span {
  color: var(--muted);
  line-height: 1.66;
}

.download-faq-section {
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(72px, 8vw, 112px);
  background: #ffffff;
}

.download-faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(18, 36, 66, 0.06);
}

.download-faq-list details {
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.download-faq-list details:last-child {
  border-bottom: 0;
}

.download-faq-list summary {
  padding: 24px 64px 24px 28px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.download-faq-list summary::after {
  right: 26px;
  border-color: rgba(45, 139, 255, 0.24);
  background: rgba(45, 139, 255, 0.08);
}

.download-faq-list p {
  max-width: 760px;
  margin: -6px 64px 24px 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.download-section {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 26px;
  padding-top: 64px;
  padding-bottom: 72px;
  background: #ffffff;
  text-align: center;
  overflow: hidden;
}

.download-copy {
  display: grid;
  justify-items: center;
  gap: 32px;
  max-width: 760px;
  padding: 0;
  z-index: 1;
}

.download-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 760;
  line-height: 1.12;
}

.download-copy .solid-button {
  min-width: 146px;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 18px 34px rgba(45, 139, 255, 0.24);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  position: relative;
  padding: 24px 42px 24px 0;
  font-size: 19px;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brand-dark);
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.78;
}

.site-footer {
  padding-top: 34px;
  padding-bottom: 30px;
  background: #101827;
  color: #ffffff;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 0 26px;
}

.footer-columns h3 {
  margin-bottom: 16px;
  font-size: 15px;
}

.footer-columns a,
.footer-columns button {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.68);
  text-align: left;
}

.footer-columns a:hover,
.footer-columns button:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 0 24px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  display: grid;
  gap: 10px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.74;
}

.footer-bottom p {
  max-width: 980px;
  margin: 0;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .mobile-nav-panel {
    position: relative;
    display: block;
  }

  .mobile-nav-panel summary {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    gap: 5px;
    cursor: pointer;
  }

  .mobile-nav-panel summary span {
    display: block;
    width: 27px;
    height: 1.5px;
    background: #1f2933;
  }

  .mobile-nav-panel nav {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    z-index: 30;
    display: grid;
    width: min(260px, calc(100vw - 32px));
    padding: 8px 0;
    border: 1px solid #edf1f5;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.14);
  }

  .mobile-nav-panel nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 18px;
    color: #526070;
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-nav-panel nav a + a {
    border-top: 1px solid #f1f3f6;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    width: min(760px, calc(100% - 40px));
    padding: 42px;
  }

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

  .download-hero-inner {
    width: min(760px, 100%);
  }

  .download-card-grid {
    grid-template-columns: 1fr;
    width: min(760px, 100%);
  }

  .download-card-grid p {
    min-height: 0;
  }

  .hero-copy {
    max-width: 100%;
  }

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

  .ecosystem-logo-wall {
    width: min(100%, 980px);
  }

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

  .showcase-section {
    width: min(760px, 100%);
  }

  .showcase-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .showcase-art {
    width: 440px;
    max-width: 100%;
    margin: 0 auto;
  }

  .showcase-copy {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
  }

  .showcase-copy p,
  .showcase-metrics,
  .price-line {
    justify-content: center;
  }

  .contact-grid,
  .hardware-card {
    grid-template-columns: 1fr;
  }

  .download-section {
    gap: 22px;
    padding-top: 54px;
    padding-bottom: 62px;
  }

  .download-copy h2 {
    font-size: clamp(30px, 5vw, 42px);
  }

  .hero-visual {
    justify-items: center;
  }

  .hero-visual img {
    width: min(430px, 100%);
  }

  .brand-hero,
  .brand-assets-section,
  .brand-color-section {
    grid-template-columns: 1fr;
  }

  .brand-overview-grid,
  .brand-usage-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  main {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
  }

  .site-header {
    min-height: 70px;
    background: #ffffff;
    backdrop-filter: none;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    width: 100%;
    min-height: 82px;
    padding: 0 24px;
    gap: 14px;
  }

  .header-actions {
    display: none;
  }

  .brand-mark {
    width: 136px;
  }

  .brand:hover .brand-mark,
  .brand:active .brand-mark {
    transform: none;
  }

  .mobile-nav-panel {
    position: relative;
    display: block;
  }

  .mobile-nav-panel summary {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    gap: 5px;
    cursor: pointer;
  }

  .mobile-nav-panel summary span {
    display: block;
    width: 27px;
    height: 1.5px;
    background: #1f2933;
  }

  .mobile-nav-panel nav {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    z-index: 30;
    display: grid;
    width: min(260px, calc(100vw - 32px));
    padding: 8px 0;
    border: 1px solid #edf1f5;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.14);
  }

  .mobile-nav-panel nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 18px;
    color: #526070;
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-nav-panel nav a + a {
    border-top: 1px solid #f1f3f6;
  }

  .header-actions .text-link {
    display: none;
  }

  .solid-button,
  .outline-button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero-section {
    order: 2;
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 42px;
    width: 100%;
    min-height: calc(100vh - 120px);
    margin: 0 auto 28px;
    padding: 48px 0 0;
    overflow: hidden;
    background: #ffffff;
    text-align: center;
  }

  .hero-copy {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 0 24px;
  }

  .notice-inner {
    width: calc(100% - 32px);
    gap: 8px;
    font-size: 13px;
  }

  .notice-bar,
  .notice-inner {
    order: 1;
    min-height: 38px;
  }

  .notice-viewport {
    height: 20px;
  }

  .notice-track button {
    height: 20px;
  }

  .notice-icon {
    width: 20px;
    height: 20px;
  }

  .notice-icon svg {
    width: 12px;
    height: 12px;
  }

  @keyframes notice-roll {
    0%,
    13% {
      transform: translateY(0);
    }

    20%,
    33% {
      transform: translateY(-20px);
    }

    40%,
    53% {
      transform: translateY(-40px);
    }

    60%,
    73% {
      transform: translateY(-60px);
    }

    80%,
    93% {
      transform: translateY(-80px);
    }

    100% {
      transform: translateY(0);
    }
  }

  h1 {
    max-width: 9em;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
    color: #3f4652;
    font-size: 42px;
    font-weight: 430;
    line-height: 1.28;
  }

  .hero-copy h1 span {
    display: block;
  }

  h2 {
    font-size: 28px;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .section-head {
    max-width: 100%;
  }

  .partner-section h2,
  .contact-section h2 {
    max-width: 10em;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy p {
    max-width: 15.5em;
    margin-right: auto;
    margin-bottom: 32px;
    margin-left: auto;
    color: #8c939d;
    font-size: 24px;
    line-height: 1.68;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .hero-actions .solid-button {
    width: min(236px, calc(100vw - 128px));
    min-height: 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
  }

  .hero-visual {
    display: grid;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    place-items: start center;
    overflow: visible;
  }

  .hero-visual img {
    width: min(460px, 100vw);
    max-width: none;
    margin-top: 2px;
    transform: translateX(2px);
  }

  .stat-band {
    order: 4;
    padding: 34px 20px 38px;
  }

  .stat-intro {
    gap: 10px;
    margin-bottom: 22px;
  }

  .stat-intro h2 {
    font-size: 28px;
  }

  .stat-intro p {
    display: block;
    font-size: 15px;
    line-height: 1.65;
  }

  .stat-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat-band article {
    min-height: 108px;
    padding: 20px 16px;
  }

  .stat-band strong {
    font-size: 30px;
  }

  .showcase-section {
    order: 5;
    gap: 42px;
    width: calc(100% - 32px);
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .showcase-row {
    gap: 18px;
  }

  .showcase-art {
    min-height: auto;
  }

  .showcase-copy {
    max-width: 100%;
    text-align: left;
  }

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

  .showcase-copy p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.72;
  }

  .showcase-metrics,
  .price-line {
    justify-content: start;
  }

  .partner-section {
    order: 8;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .contact-section {
    order: 9;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .download-section {
    order: 7;
    padding-top: 44px;
    padding-bottom: 50px;
  }

  .faq-section {
    order: 6;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .seo-internal-section {
    order: 10;
  }

  .content-page {
    width: calc(100% - 32px);
    margin: 46px auto 68px;
  }

  .seo-content-page {
    width: calc(100% - 32px);
    margin-top: 42px;
  }

  .about-page {
    width: calc(100% - 32px);
    margin: 42px auto 68px;
  }

  .about-hero,
  .about-company-section,
  .about-belief-grid,
  .about-photo-section {
    grid-template-columns: 1fr;
  }

  .about-hero {
    gap: 28px;
    min-height: 0;
  }

  .about-hero h1 {
    font-size: clamp(48px, 17vw, 72px);
  }

  .about-hero p {
    font-size: 22px;
    line-height: 1.48;
  }

  .about-hero-card {
    min-height: 260px;
    padding: 24px;
  }

  .about-metric-section {
    grid-template-columns: 1fr;
    margin: 34px 0;
  }

  .about-metric-section article {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-metric-section article:last-child {
    border-bottom: 0;
  }

  .about-company-section,
  .about-photo-section,
  .about-career-section,
  .about-cta-section,
  .about-belief-grid {
    margin-top: 46px;
  }

  .about-section-head h2,
  .about-photo-copy h2,
  .about-career-section h2,
  .about-cta-section h2 {
    font-size: 30px;
    line-height: 1.16;
  }

  .about-network-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .about-belief-grid article {
    min-height: 0;
    padding: 24px;
  }

  .about-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    min-height: 0;
  }

  .about-photo-main,
  .about-photo-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    box-shadow: 0 16px 42px rgba(28, 66, 98, 0.12);
  }

  .about-photo-main {
    grid-column: 1 / -1;
    height: 220px;
  }

  .about-photo-card {
    height: 160px;
  }

  .about-photo-grid figcaption {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 7px 10px;
    font-size: 11px;
  }

  .about-career-section,
  .about-cta-section {
    display: grid;
    padding: 24px;
  }

  .about-career-section .outline-button,
  .about-cta-section .solid-button {
    justify-self: start;
  }

  .careers-page {
    width: calc(100% - 32px);
    margin: 42px auto 68px;
  }

  .careers-hero,
  .careers-mission-section,
  .careers-open-section {
    grid-template-columns: 1fr;
  }

  .careers-hero {
    gap: 28px;
    min-height: 0;
  }

  .careers-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1.08;
  }

  .careers-hero p {
    font-size: 21px;
  }

  .careers-hero-visual {
    min-height: 360px;
  }

  .careers-hero-visual > img {
    width: min(310px, 78%);
  }

  .careers-floating-card {
    right: 16px;
    bottom: 16px;
    width: min(210px, calc(100% - 32px));
    padding: 14px;
  }

  .careers-floating-card strong {
    font-size: 30px;
  }

  .careers-profile-section,
  .careers-mission-section,
  .careers-proof-grid,
  .careers-quote-section,
  .careers-value-section,
  .careers-open-section {
    margin-top: 48px;
  }

  .careers-section-head {
    margin-bottom: 22px;
    text-align: left;
  }

  .careers-section-head h2,
  .careers-mission-section h2,
  .careers-open-section h2 {
    font-size: 30px;
    line-height: 1.16;
  }

  .careers-profile-grid,
  .careers-proof-grid,
  .careers-value-list {
    grid-template-columns: 1fr;
  }

  .careers-profile-grid article,
  .careers-value-list article,
  .careers-proof-grid article {
    min-height: 0;
    padding: 24px;
  }

  .careers-profile-grid h3,
  .careers-proof-grid h2,
  .careers-value-list strong {
    font-size: 21px;
  }

  .careers-mission-section,
  .careers-open-section {
    padding: 24px;
  }

  .careers-mission-section img {
    max-height: 260px;
  }

  .careers-quote-section {
    padding: 30px 24px;
  }

  .careers-quote-section p {
    font-size: 27px;
  }

  .careers-role-panel .solid-button {
    width: 100%;
  }

  .api-page {
    width: calc(100% - 32px);
    margin: 42px auto 68px;
  }

  .api-hero,
  .api-start-section {
    grid-template-columns: 1fr;
  }

  .api-hero {
    gap: 28px;
    min-height: 0;
  }

  .api-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1.08;
  }

  .api-hero p {
    font-size: 18px;
  }

  .api-hero-actions {
    width: 100%;
  }

  .api-hero-actions .solid-button,
  .api-hero-actions .outline-button {
    flex: 1 1 140px;
  }

  .api-hero-panel pre {
    padding: 22px 18px;
    font-size: 12px;
  }

  .api-hero-panel p {
    padding: 0 18px 22px;
  }

  .api-doc-section,
  .api-start-section,
  .api-link-section {
    margin-top: 48px;
  }

  .api-section-head {
    margin-bottom: 22px;
    text-align: left;
  }

  .api-section-head h2,
  .api-start-section h2 {
    font-size: 30px;
    line-height: 1.16;
  }

  .api-doc-grid,
  .api-link-section {
    grid-template-columns: 1fr;
  }

  .seo-internal-section {
    width: calc(100% - 28px);
    margin-top: 44px;
    margin-bottom: 58px;
    padding: 24px 18px;
  }

  .seo-internal-section .section-head,
  .seo-internal-section > p {
    text-align: left;
  }

  .seo-link-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .seo-link-grid a {
    min-height: 0;
    padding: 16px;
  }

  .api-doc-grid article {
    min-height: 0;
    padding: 22px;
  }

  .api-start-section {
    padding: 24px;
  }

  .api-start-list li {
    padding-left: 48px;
  }

  .brand-hero,
  .brand-overview-section,
  .brand-assets-section,
  .brand-usage-section,
  .brand-color-section,
  .brand-cta-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand-hero {
    gap: 20px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    padding-top: 26px;
    padding-bottom: 42px;
  }

  .brand-hero-copy {
    width: 100%;
    max-width: 100%;
    justify-items: start;
    gap: 12px;
    text-align: left;
  }

  .brand-hero-copy h1 {
    max-width: 100%;
    font-size: 42px;
    line-height: 1.1;
    overflow-wrap: normal;
  }

  .brand-hero-copy p {
    max-width: 18.5em;
    font-size: 16px;
    line-height: 1.68;
  }

  .brand-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 9px;
    margin-top: 4px;
  }

  .brand-hero-actions .solid-button,
  .brand-hero-actions .outline-button {
    width: 100%;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
    white-space: nowrap;
  }

  .brand-logo-stage {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 156px;
    padding: 18px;
    background-size: 22px 22px;
    box-shadow: 0 14px 34px rgba(21, 49, 88, 0.08);
  }

  .brand-logo-stage img {
    width: min(210px, 70%);
  }

  .brand-resource-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .brand-resource-row span {
    display: grid;
    justify-items: center;
    gap: 5px;
    min-height: 68px;
    padding: 9px 6px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
  }

  .brand-resource-row img {
    width: 24px;
    height: 24px;
  }

  .brand-resource-row span:first-child img {
    width: 48px;
    height: 24px;
  }

  .brand-overview-section,
  .brand-assets-section,
  .brand-usage-section,
  .brand-color-section,
  .brand-cta-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .brand-section-head {
    justify-items: start;
    gap: 8px;
    margin-bottom: 18px;
    text-align: left;
  }

  .brand-section-head h2,
  .brand-assets-section h2,
  .brand-color-section h2,
  .brand-cta-section h2 {
    font-size: 28px;
    line-height: 1.16;
  }

  .brand-section-head p,
  .brand-assets-section p,
  .brand-usage-grid p,
  .brand-overview-grid p {
    font-size: 15px;
    line-height: 1.66;
  }

  .brand-overview-grid article {
    min-height: 0;
    gap: 9px;
    padding: 14px;
    box-shadow: 0 10px 28px rgba(18, 36, 66, 0.05);
  }

  .brand-card-visual {
    min-height: 118px;
    margin-bottom: 4px;
  }

  .brand-card-visual-logo img {
    width: min(176px, 68%);
  }

  .brand-card-visual-fans strong {
    font-size: 22px;
  }

  .brand-card-visual-fans span {
    font-size: 38px;
  }

  .brand-safe-area {
    min-height: 86px;
    font-size: 12px;
  }

  .brand-overview-grid h3 {
    font-size: 19px;
  }

  .brand-assets-section,
  .brand-color-section {
    gap: 18px;
  }

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

  .brand-assets-panel figure,
  .brand-assets-panel figure:first-child {
    grid-row: auto;
    min-height: 126px;
    padding: 18px;
  }

  .brand-assets-panel img,
  .brand-assets-panel figure:first-child img {
    max-height: 62px;
  }

  .brand-usage-grid article {
    min-height: 0;
    gap: 8px;
    padding: 18px;
  }

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

  .brand-color-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-color-grid span {
    min-height: 116px;
    padding: 12px;
  }

  .brand-color-grid b {
    font-size: 13px;
  }

  .brand-color-grid em {
    font-size: 12px;
  }

  .seo-hero {
    gap: 14px;
    margin-bottom: 34px;
  }

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

  .seo-hero p,
  .content-hero p,
  .content-section p,
  .content-section li,
  .content-card p {
    font-size: 16px;
    line-height: 1.72;
  }

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

  .seo-card-grid {
    gap: 14px;
    margin-bottom: 38px;
  }

  .content-card {
    padding: 22px;
  }

  .content-card h2,
  .content-section h2 {
    font-size: 21px;
  }

  .content-section {
    padding: 24px 0;
  }

  .content-faq summary {
    padding: 18px 0;
    font-size: 17px;
  }

  .crypto-icon-strip {
    gap: 8px;
    width: 100%;
  }

  .crypto-icon-strip span {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .route-track,
  .token-panel-grid,
  .network-board-grid,
  .mobile-seo-split,
  .evm-address-section {
    grid-template-columns: 1fr;
  }

  .route-track article,
  .network-board-grid article,
  .token-panel-grid article {
    min-height: 0;
    padding: 22px 18px;
  }

  .mobile-seo-split,
  .evm-address-section {
    padding: 24px 18px;
  }

  .mobile-check-list li {
    padding-left: 30px;
    font-size: 15px;
  }

  .address-card {
    padding: 22px 18px;
  }

  .risk-list li {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    min-height: 76px;
    font-size: 15px;
  }

  .risk-list strong {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .faq-topic-section {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .faq-topic-grid button,
  .faq-topic-grid a {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 3px 10px;
    min-height: 86px;
    padding: 12px;
  }

  .faq-seo-page {
    gap: 32px;
    width: min(1040px, calc(100% - 32px));
    margin-top: 24px;
  }

  .faq-seo-hero {
    padding: 28px 18px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .faq-index-panel {
    position: static;
  }

  .faq-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .faq-topic-grid img {
    width: 24px;
    height: 24px;
  }

  .faq-topic-grid strong {
    font-size: 15px;
  }

  .faq-topic-grid span {
    font-size: 12px;
    line-height: 1.42;
  }

  .faq-group {
    gap: 14px;
    padding-top: 0;
    border-top: 0;
  }

  .faq-group h2,
  .faq-download-cta h2 {
    font-size: 24px;
  }

  .faq-answer-list {
    gap: 10px;
    border-top: 0;
  }

  .faq-answer-list details {
    border: 1px solid #e4edf7;
    border-radius: 8px;
    background: #ffffff;
  }

  .faq-answer-list summary {
    padding: 15px 14px;
    font-size: 16px;
  }

  .faq-answer-list p {
    margin: -3px 14px 15px;
    font-size: 14px;
    line-height: 1.72;
  }

  .faq-download-cta {
    padding: 24px 18px;
  }

  .terms-summary-list article {
    padding: 19px 0;
  }

  .principle-list,
  .career-lanes,
  .brand-kit-section {
    grid-template-columns: 1fr;
  }

  .principle-list article,
  .career-lanes article {
    min-height: 0;
    padding: 22px 18px;
  }

  .api-flow-list li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .brand-kit-section {
    padding: 24px 18px;
  }

  .brand-preview-card {
    min-height: 190px;
  }

  .terms-doc-article {
    width: calc(100% - 28px);
    padding-top: 22px;
    padding-bottom: 54px;
  }

  .terms-doc-header {
    margin-bottom: 22px;
  }

  .terms-doc-header h1 {
    font-size: 19px;
  }

  .terms-doc-header p,
  .terms-doc-section p,
  .terms-doc-section li {
    font-size: 14px;
    line-height: 1.82;
  }

  .terms-doc-section h2 {
    font-size: 15px;
  }

  .doc-page {
    width: calc(100% - 32px);
    margin-top: 42px;
    margin-bottom: 70px;
  }

  .doc-article {
    gap: 28px;
  }

  .doc-header {
    gap: 14px;
    padding-bottom: 24px;
  }

  .doc-header h1 {
    font-size: 34px;
  }

  .doc-header p,
  .doc-section p,
  .doc-section li {
    font-size: 16px;
    line-height: 1.78;
  }

  .doc-toc {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .doc-section {
    gap: 12px;
    padding-bottom: 26px;
  }

  .doc-section h2 {
    font-size: 24px;
  }

  .layer2-doc-cta-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    width: calc(100% - 32px);
    padding: 34px 0 28px;
  }

  .layer2-doc-cta-copy {
    gap: 12px;
  }

  .layer2-doc-cta-copy h1 {
    font-size: 34px;
  }

  .layer2-doc-cta-copy p {
    font-size: 17px;
    line-height: 1.55;
  }

  .layer2-doc-cta-button {
    min-width: 170px;
    min-height: 48px;
    font-size: 17px;
  }

  .layer2-doc-cta-art {
    min-height: 142px;
  }

  .cta-window {
    left: 42px;
    width: 150px;
    height: 78px;
  }

  .cta-window i {
    right: 62px;
    bottom: 21px;
    width: 22px;
    height: 22px;
  }

  .cta-panel {
    right: 18px;
    width: 150px;
    height: 104px;
  }

  .cta-arrow {
    right: 25px;
    width: 48px;
    height: 42px;
  }

  .cta-dot {
    bottom: 32px;
  }

  .cta-triangle {
    right: 0;
    bottom: 46px;
  }

  .layer2-article-page {
    background: #eef4fb;
  }

  .layer2-doc-cta {
    display: none;
  }

  .layer2-guide-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    width: calc(100% - 48px);
    max-width: 560px;
    padding: 0 0 64px;
  }

  .layer2-guide-sidebar {
    position: static;
    gap: 0;
    padding: 0;
    border: 0;
    background: #ffffff;
    box-shadow: 0 12px 38px rgba(34, 55, 87, 0.08);
  }

  .layer2-guide-sidebar h2 {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 78px;
    padding: 0 22px;
    border-bottom: 1px solid #edf1f5;
    color: #536174;
    font-size: 17px;
    font-weight: 800;
  }

  .layer2-guide-sidebar h2::after,
  .layer2-guide-sidebar button::after {
    content: "";
    width: 10px;
    height: 10px;
    margin-left: auto;
    border-top: 2px solid #9aa3ad;
    border-right: 2px solid #9aa3ad;
    transform: rotate(45deg);
  }

  .layer2-guide-sidebar nav {
    display: grid;
    gap: 0;
    padding: 0;
    overflow: visible;
  }

  .layer2-guide-sidebar button {
    gap: 18px;
    min-height: 76px;
    padding: 0 22px;
    border-radius: 0;
    border-bottom: 1px solid #edf1f5;
    background: #ffffff;
    color: #5d6877;
    font-size: 18px;
    font-weight: 700;
    white-space: normal;
  }

  .layer2-guide-sidebar button:hover,
  .layer2-guide-sidebar button.active {
    background: #ffffff;
    color: #5d6877;
  }

  .layer2-guide-sidebar .network-icon {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
    background: #f4f6f8;
  }

  .layer2-guide-sidebar .network-icon img {
    width: 24px;
    height: 24px;
  }

  .layer2-guide-article {
    display: none;
  }

  .layer2-guide-article h2 {
    margin-bottom: 6px;
    font-size: 26px;
    line-height: 1.32;
  }

  .layer2-guide-banner {
    min-height: 184px;
    margin-bottom: 4px;
  }

  .guide-card-visual {
    width: min(280px, 76%);
    min-height: 150px;
  }

  .guide-wallet-card {
    width: min(190px, 100%);
    padding: 24px 20px;
    border-width: 2px;
    border-radius: 14px;
    box-shadow: 24px 17px 0 #6aa8f4;
  }

  .guide-wallet-card span {
    font-size: 14px;
  }

  .guide-wallet-card strong {
    font-size: 19px;
  }

  .guide-coin {
    width: 46px;
    height: 46px;
    border-width: 4px;
    font-size: 12px;
  }

  .guide-check {
    width: 42px;
    height: 42px;
    border-width: 4px;
    font-size: 23px;
  }

  .layer2-guide-article p {
    font-size: 16px;
    line-height: 1.78;
  }

  .layer2-guide-section {
    gap: 12px;
    padding-top: 12px;
  }

  .layer2-guide-section h2 {
    font-size: 24px;
  }

  .public-chain-hero,
  .chain-network-section,
  .chain-feature-section,
  .chain-safety-section,
  .chain-faq-section,
  .chain-cta-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .public-chain-hero {
    gap: 34px;
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .public-chain-copy h1 {
    font-size: 42px;
  }

  .public-chain-copy p {
    max-width: 20em;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
    line-height: 1.68;
  }

  .public-chain-actions {
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
  }

  .chain-network-section,
  .chain-feature-section,
  .chain-safety-section,
  .chain-faq-section,
  .chain-cta-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .chain-network-grid,
  .chain-feature-grid {
    grid-template-columns: 1fr;
  }

  .chain-network-grid article,
  .chain-feature-grid article {
    min-height: 0;
    padding: 22px;
  }

  .chain-safety-head,
  .chain-check-list,
  .chain-faq-head,
  .chain-faq-list,
  .chain-cta-copy {
    width: 100%;
  }

  .chain-safety-head {
    justify-items: center;
    padding-bottom: 26px;
    text-align: center;
  }

  .chain-safety-section h2,
  .chain-faq-head h2,
  .chain-cta-copy h2 {
    font-size: 30px;
  }

  .chain-cta-copy {
    gap: 12px;
  }

  .chain-cta-copy p {
    font-size: 15px;
    line-height: 1.68;
  }

  .chain-faq-head {
    gap: 10px;
    margin-bottom: 20px;
  }

  .chain-faq-list {
    gap: 10px;
  }

  .chain-faq-list summary {
    padding: 17px 16px;
    font-size: 16px;
  }

  .chain-faq-list p {
    margin: -2px 16px 18px;
    font-size: 15px;
    line-height: 1.68;
  }

  .chain-check-list li {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    min-height: 0;
    padding: 24px 0 26px;
    text-align: center;
  }

  .check-index {
    width: 36px;
    height: 36px;
  }

  .stat-grid,
  .feature-grid,
  .chain-grid,
  .contact-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .ecosystem-logo-wall {
    width: 100%;
  }

  .stat-band {
    padding: 58px 16px 62px;
  }

  .stat-intro {
    gap: 12px;
    margin-bottom: 30px;
  }

  .stat-intro h2 {
    font-size: 34px;
  }

  .stat-intro p {
    display: grid;
    gap: 2px;
    font-size: 15px;
  }

  .stat-band article {
    min-height: 128px;
    padding: 22px 14px;
  }

  .feature-section,
  .showcase-section,
  .chains-section,
  .security-section,
  .partner-section,
  .contact-section,
  .faq-section {
    padding: 64px 16px;
  }

  .download-hero,
  .download-feature-strip,
  .download-platform-section,
  .download-steps-section,
  .download-faq-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .download-hero {
    padding-top: 46px;
    padding-bottom: 56px;
  }

  .download-hero-inner p,
  .download-steps-copy p {
    font-size: 16px;
    line-height: 1.66;
  }

  .download-app-icon {
    width: 96px;
    height: 96px;
  }

  .download-hero-inner h1 {
    margin: 14px 0 18px;
    font-size: 31px;
  }

  .download-hero-inner p {
    width: 100%;
    max-width: 15em;
    font-size: 18px;
    line-height: 1.58;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .download-actions {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: 270px;
    margin-top: 24px;
  }

  .download-qr-button {
    width: 72px;
    justify-self: center;
  }

  .download-qr-popover {
    top: calc(100% + 18px);
    right: 50%;
    width: min(286px, calc(100vw - 32px));
    transform: translateX(50%);
  }

  .download-qr-panel {
    padding: 30px 24px 24px;
  }

  .download-qr-panel::before {
    right: calc(50% - 9px);
  }

  .download-qr-code {
    width: min(224px, calc(100vw - 104px));
    height: auto;
  }

  .download-qr-panel p {
    margin-top: 16px;
    font-size: 19px;
  }

  .download-feature-strip {
    padding-top: 58px;
    padding-bottom: 56px;
  }

  .download-feature-grid {
    grid-template-columns: 1fr;
    gap: 54px;
    width: min(330px, 100%);
  }

  .download-feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
  }

  .download-feature-grid h2 {
    margin-bottom: 14px;
    font-size: 22px;
  }

  .download-feature-grid p {
    font-size: 16px;
    line-height: 1.65;
  }

  .download-platform-section,
  .download-steps-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .download-card-grid article {
    min-height: 0;
    padding: 24px;
  }

  .download-steps li {
    min-height: 0;
    padding: 22px 20px 22px 76px;
  }

  .download-steps li::before {
    left: 20px;
    top: 22px;
    width: 38px;
    height: 38px;
  }

  .download-faq-section {
    padding-top: 54px;
    padding-bottom: 62px;
  }

  .download-faq-list summary {
    padding: 20px 56px 20px 18px;
    font-size: 16px;
  }

  .download-faq-list summary::after {
    right: 18px;
    top: 18px;
  }

  .download-faq-list p {
    margin: -2px 18px 20px;
    font-size: 15px;
  }

  .download-section {
    gap: 18px;
    padding: 42px 16px 54px;
  }

  .download-copy {
    gap: 12px;
    padding: 0;
  }

  .download-copy h2 {
    max-width: none;
    font-size: clamp(28px, 9vw, 36px);
  }

  .download-copy .solid-button {
    min-width: 132px;
    min-height: 44px;
    padding: 0 24px;
    font-size: 15px;
  }

  .showcase-section {
    gap: 68px;
  }

  .showcase-row {
    gap: 20px;
  }

  .showcase-art {
    min-height: 224px;
    width: min(340px, 100%);
    transform: none;
    transform-origin: center;
  }

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

  .showcase-copy p {
    font-size: 15px;
    line-height: 1.62;
  }

  .showcase-metrics {
    gap: 18px;
    margin-top: 22px;
  }

  .showcase-metrics div + div {
    padding-left: 18px;
  }

  .showcase-metrics strong,
  .price-line strong {
    font-size: 28px;
  }

  .price-line {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    margin-top: 22px;
  }

  .hardware-device {
    min-height: 340px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 980px) {
  .mobile-nav-panel {
    position: relative;
    display: block;
  }

  .mobile-nav-panel summary {
    position: relative;
    z-index: 70;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    gap: 5px;
    cursor: pointer;
  }

  .mobile-nav-panel summary span {
    display: block;
    width: 27px;
    height: 1.5px;
    background: #1f2933;
    transform-origin: center;
    transition:
      opacity 0.16s ease,
      transform 0.16s ease;
  }

  .mobile-nav-panel[open] summary span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .mobile-nav-panel[open] summary span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-panel[open] summary span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .mobile-nav-panel nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: block;
    width: 100vw;
    height: 100vh;
    padding: 28px 24px 44px;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
  }

  .mobile-nav-panel nav a + a {
    border-top: 0;
  }

  .mobile-menu-language {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    margin-bottom: 24px;
    color: #6f7682;
    font-size: 16px;
    font-weight: 600;
  }

  .mobile-menu-language svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .mobile-menu-primary,
  .mobile-menu-soft {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin: 0 0 16px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 800;
  }

  .mobile-menu-primary {
    background: #438de2;
    color: #ffffff;
  }

  .mobile-menu-soft {
    background: #edf5ff;
    color: #4380bd;
  }

  .mobile-menu-id {
    gap: 6px;
    color: #168fd7;
    letter-spacing: 0;
  }

  .mobile-menu-id span {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: #f05252;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-menu-group {
    margin: 0 -24px;
    border-top: 1px solid #edf1f5;
  }

  .mobile-menu-group:last-of-type {
    border-bottom: 1px solid #edf1f5;
  }

  .mobile-menu-group summary {
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    min-height: 70px;
    place-items: initial;
    gap: 0;
    padding: 0 24px;
    color: #252b35;
    font-size: 17px;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
  }

  .mobile-menu-group summary::after {
    display: none;
  }

  .mobile-menu-group[open] summary::after {
    transform: none;
  }

  .mobile-menu-group a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 32px;
    color: #5c6674;
    font-size: 15px;
    font-weight: 650;
  }

  .mobile-menu-group a:last-child {
    padding-bottom: 12px;
  }

  .mobile-menu-subscribe {
    position: relative;
    margin: 24px 0 10px;
  }

  .mobile-menu-subscribe input {
    width: 100%;
    min-height: 48px;
    padding: 0 58px 0 22px;
    border: 0;
    border-radius: 999px;
    background: #f1f3f6;
    color: #526070;
    font: inherit;
    font-size: 15px;
    outline: none;
  }

  .mobile-menu-subscribe button {
    position: absolute;
    top: 6px;
    right: 8px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: #1f9ae8;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
  }

  .mobile-menu-note {
    margin: 0 0 24px;
    color: #b3bbc6;
    font-size: 15px;
    font-weight: 700;
  }
}
