:root {
  color-scheme: dark;
  --bg: #000000;
  --bg-deep: #000000;
  --surface: rgba(12, 12, 12, 0.92);
  --surface-strong: rgba(20, 20, 20, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.13);
  --border-strong: rgba(174, 133, 85, 0.48);
  --text: #f7f4ef;
  --muted: rgba(247, 244, 239, 0.62);
  --faint: rgba(247, 244, 239, 0.38);
  --brand: #ae8555;
  --brand-bright: #e0b47e;
  --green: #5fd08a;
  --yellow: #e2bb5d;
  --red: #e06b6b;
  --gray: #87909a;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --shadow-lifted: 0 30px 90px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  --ease-out-quart: cubic-bezier(.165, .84, .44, 1);
  --ease-in-out-cubic: cubic-bezier(.645, .045, .355, 1);
  --dur-1: 120ms;
  --dur-2: 180ms;
  --dur-3: 240ms;
  font-family: "HarmonyOS Sans SC", "MiSans", "Alibaba PuHuiTi", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg-deep);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: #000;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.avara-home {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.avara-products {
  position: fixed;
  inset: 0;
  bottom: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.avara-products ul {
  position: relative;
  list-style: none;
  user-select: none;
}

.avara-products li {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avara-anchor {
  position: relative;
  pointer-events: none;
  will-change: transform;
  transform: translate(var(--x, 0px), var(--y, 0px));
  transition: transform 1s cubic-bezier(.19, 1, .22, 1);
}

.avara-scale {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0;
  border: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  will-change: transform, opacity;
  transform: scale(var(--scale, .5));
  opacity: var(--opacity, 1);
  transition: transform .5s cubic-bezier(.19, 1, .22, 1), opacity .5s cubic-bezier(.19, 1, .22, 1) .05s;
}

.avara-logo {
  position: relative;
  display: block;
  transform: rotate(var(--rotate, 0deg));
  transition: transform .5s cubic-bezier(.19, 1, .22, 1);
}

.avara-float {
  position: relative;
  display: block;
  animation: avaraFloat 2.5s ease-in-out infinite alternate;
  animation-delay: var(--float-delay, 0s);
}

.avara-scale img {
  display: block;
  max-width: none;
  height: auto;
  user-select: none;
  pointer-events: none;
  transform: scale(1);
}

.avara-product-label {
  z-index: 1;
  position: absolute;
  bottom: 85%;
  left: 50%;
  display: block;
  padding: 1.2rem 1.05rem;
  border-radius: 2rem;
  background: linear-gradient(0deg, #0d0d0d, #0d0d0d), rgba(191, 191, 191, .13);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02), inset 0 1px 2px 0 rgba(255, 255, 255, .04);
  color: #fff;
  font-size: 1.125rem;
  line-height: 0;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 2rem);
  transition: opacity .2s var(--ease-out-quart), transform .2s var(--ease-out-quart);
}

.avara-product-aave {
  --x: -246px;
  --y: -15px;
  --z: 5;
}

.avara-product-family {
  --x: -82px;
  --y: -36px;
  --z: 4;
}

.avara-product-lens {
  --x: 95px;
  --y: 7px;
  --z: 3;
}

.avara-product-gho {
  --x: 276px;
  --y: 0;
  --z: 2;
}

.avara-anchor {
  z-index: var(--z, 1);
}

.avara-detail {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  justify-content: flex-end;
  padding: .5rem;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .32s var(--ease-out-quart), visibility 0s .32s;
}

.avara-detail.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.avara-detail-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: default;
}

.avara-detail-panel {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 30%;
  min-width: 28rem;
  min-height: 100%;
  height: fit-content;
  flex-direction: column;
  padding: 2.75rem 4rem;
  border: 0;
  border-radius: .75rem;
  background: rgba(15, 15, 15, .89);
  box-shadow: none;
  backdrop-filter: blur(2rem);
  -webkit-backdrop-filter: blur(2rem);
  opacity: 0;
  overflow: visible;
  transform: translateY(1rem) scale(.985);
  transform-origin: 100% 50%;
  transition: opacity .38s cubic-bezier(.19, 1, .22, 1), transform .38s cubic-bezier(.19, 1, .22, 1);
}

.avara-detail.is-open .avara-detail-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.avara-detail-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  background: transparent;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  transition: color .16s ease, transform .16s ease, opacity .16s ease;
}

.avara-detail-close::before,
.avara-detail-close::after {
  position: absolute;
  width: 1.05rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.avara-detail-close::before {
  transform: rotate(45deg);
}

.avara-detail-close::after {
  transform: rotate(-45deg);
}

.avara-detail-visual {
  width: 11rem;
  min-height: 8.5rem;
  margin: 0 auto 2.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 1.5rem 2.5rem rgba(0, 0, 0, .55));
  opacity: .96;
}

.avara-detail-kicker {
  margin: 0 0 .85rem;
  color: rgba(255, 255, 255, .36);
  font-size: .75rem;
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.avara-detail-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.055em;
}

.avara-detail-description {
  max-width: 35rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5;
}

.avara-detail-meta {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 0;
  padding: 2.75rem 0 0;
  font-size: .875rem;
  font-weight: 300;
}

.avara-detail-meta div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: .25rem 0 .75rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .72);
  line-height: 1.375rem;
}

.avara-detail-meta div:last-child {
  border-bottom: 0;
}

.avara-detail-meta dt {
  color: rgba(255, 255, 255, .42);
}

.avara-detail-meta dd {
  max-width: 60%;
  margin: 0;
  text-align: right;
}

.avara-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.75rem;
}

.avara-detail-tags span {
  position: relative;
  padding: .38rem .62rem;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 999px;
  color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .025);
  font-size: .75rem;
  font-weight: 300;
}

.avara-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  width: 100%;
  margin-top: auto;
  padding-top: 2rem;
}

.avara-detail-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.75rem;
  padding: .45rem .72rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  color: rgba(255, 255, 255, .44);
  background: rgba(191, 191, 191, .05);
  font-size: .8125rem;
  font-weight: 300;
  line-height: 1;
  transition: opacity .1s ease, color .1s ease, border-color .1s ease;
}

.avara-detail-actions a:first-child {
  color: rgba(255, 255, 255, .78);
}

body.avara-detail-open .avara-bottom {
  pointer-events: none;
  opacity: 0;
  transform: translateY(2rem);
}

body.avara-detail-open .avara-anchor {
  transition: transform 1s cubic-bezier(.19, 1, .22, 1);
}

body.avara-detail-open .avara-anchor:not(.is-selected) {
  --scale: .5;
  --opacity: .2;
}

body.avara-detail-open .avara-anchor.is-selected {
  z-index: 9;
  --x: -232px;
  --y: 0px;
}

body.avara-detail-open .avara-anchor.is-selected .avara-scale {
  --scale: 1;
  --opacity: 1;
}

body.avara-detail-open .avara-anchor.is-selected .avara-float {
  animation: none;
}

.avara-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 2.55rem;
  color: rgba(255, 255, 255, .15);
  transition: opacity .2s ease-in-out, transform .2s ease-in-out;
}

.avara-bottom header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: .95rem;
  color: #fff;
}

.avara-wordmark {
  display: inline-block;
  color: rgba(255, 255, 255, .82);
  font-size: .875rem;
  font-weight: 300;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  opacity: .72;
  transition: opacity .16s ease, transform .16s ease;
}

.avara-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .46rem;
  min-height: 1.25rem;
  color: rgba(255, 255, 255, .28);
  font-size: .78rem;
  font-weight: 400;
  line-height: 1;
}

.avara-social a,
.avara-social button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, .38);
  font: inherit;
  line-height: 1;
  cursor: pointer;
  transition: color .16s ease, opacity .16s ease, transform .16s ease;
}

.avara-social a:focus-visible,
.avara-social button:focus-visible {
  outline: 1px solid rgba(255, 255, 255, .42);
  outline-offset: .28rem;
}

.wechat-copy-state {
  position: absolute;
  left: calc(50% + 4.55rem);
  bottom: .34rem;
  z-index: 6;
  display: grid;
  gap: .22rem;
  margin: 0;
  padding: .62rem .82rem .66rem;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: .34rem 1.12rem 1.12rem 1.12rem;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 .9rem 2.2rem rgba(0, 0, 0, .30), inset 0 0 0 1px rgba(0, 0, 0, .035);
  color: #111111;
  font-size: .68rem;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-.55rem, .06rem) scaleX(.18) scaleY(.72);
  transform-origin: -.28rem 72%;
  filter: blur(.35px);
  transition: opacity .1s ease, filter .1s ease;
}

.wechat-copy-state span {
  color: rgba(0, 0, 0, .58);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.wechat-copy-state strong {
  color: #111111;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.wechat-copy-state::after {
  content: "";
  position: absolute;
  left: -.38rem;
  bottom: .54rem;
  width: .74rem;
  height: .74rem;
  border-left: 1px solid rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .78);
  border-bottom-left-radius: .12rem;
  background: rgba(255, 255, 255, .98);
  transform: rotate(45deg) skew(4deg, 4deg);
  transform-origin: center;
}

.wechat-copy-state.is-visible {
  opacity: 1;
  filter: blur(0);
  animation: wechatBubbleTalk 2.65s linear both;
}

.console-screen {
  display: none;
  position: relative;
  min-height: 100vh;
  padding-top: 1px;
  background:
    radial-gradient(circle at 76% 8%, rgba(174, 133, 85, 0.18), transparent 28vw),
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.075), transparent 24vw),
    linear-gradient(180deg, #050505 0%, #000000 48%, #070707 100%);
  overflow: hidden;
}

@media (hover: hover) {
  body:not(.avara-detail-open) .avara-scale:hover,
  body:not(.avara-detail-open) .avara-scale:focus-visible {
    transform: scale(calc(var(--scale, .5) * 1.075));
  }

  body:not(.avara-detail-open) .avara-anchor:hover .avara-product-label,
  body:not(.avara-detail-open) .avara-anchor:focus-visible .avara-product-label {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .avara-wordmark:hover,
  .avara-wordmark:focus-visible {
    opacity: 1;
    transform: translateY(-.08rem);
  }

  .avara-social a:hover,
  .avara-social button:hover {
    color: rgba(255, 255, 255, .78);
    transform: translateY(-.06rem);
  }
}

@keyframes avaraFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes wechatBubbleTalk {
  0% {
    opacity: 0;
    transform: translate(-.55rem, .06rem) scaleX(.18) scaleY(.72);
  }

  4% {
    opacity: .24;
    transform: translate(-.48rem, .052rem) scaleX(.34) scaleY(.78);
  }

  8% {
    opacity: .52;
    transform: translate(-.38rem, .04rem) scaleX(.58) scaleY(.87);
  }

  12% {
    opacity: .82;
    transform: translate(-.24rem, .026rem) scaleX(.84) scaleY(.96);
  }

  16% {
    opacity: 1;
    transform: translate(-.09rem, .012rem) scaleX(1.08) scaleY(1.04);
  }

  20% {
    transform: translate(.025rem, -.004rem) scaleX(1.18) scaleY(.985);
  }

  24% {
    transform: translate(.055rem, -.01rem) scaleX(1.08) scaleY(1.015);
  }

  28% {
    transform: translate(.025rem, -.006rem) scaleX(1.025) scaleY(1.006);
  }

  32% {
    transform: translate(0, 0) scaleX(1) scaleY(1);
  }

  38% {
    transform: translate(.012rem, -.01rem) scaleX(1.012) scaleY(.998);
  }

  44% {
    transform: translate(0, 0) scaleX(1) scaleY(1);
  }

  52%,
  74% {
    opacity: 1;
    transform: translate(0, 0) scaleX(1) scaleY(1);
  }

  80% {
    opacity: .98;
    transform: translate(.03rem, -.018rem) scaleX(1.01) scaleY(.995);
  }

  86% {
    opacity: .82;
    transform: translate(.075rem, -.032rem) scaleX(.94) scaleY(.985);
  }

  92% {
    opacity: .46;
    transform: translate(.12rem, -.045rem) scaleX(.72) scaleY(.94);
  }

  96% {
    opacity: .18;
    transform: translate(.16rem, -.055rem) scaleX(.42) scaleY(.86);
  }

  100% {
    opacity: 0;
    transform: translate(.18rem, -.06rem) scaleX(.22) scaleY(.8);
  }
}

@media screen and (max-width: 920px) {
  .avara-products {
    bottom: 6rem;
    height: auto;
  }

  .avara-product-label {
    display: none;
  }

  .avara-scale {
    --scale: .33;
  }

  .avara-product-aave {
    --x: -90px;
    --y: -40px;
    --z: 3;
  }

  .avara-product-family {
    --x: 90px;
    --y: -40px;
    --z: 2;
  }

  .avara-product-lens {
    --x: -90px;
    --y: 120px;
    --z: 1;
  }

  .avara-product-gho {
    --x: 90px;
    --y: 120px;
    --z: 1;
  }

  .avara-anchor {
    transition: transform .4s cubic-bezier(.19, 1, .22, 1);
  }

  .avara-detail {
    display: block;
    padding: 0 .25rem .25rem;
  }

  .avara-detail::before {
    display: block;
    height: calc(100% - 17rem);
    content: "";
  }

  .avara-detail-panel {
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    height: 100svh;
    padding: 1.75rem 2rem 2rem;
    border-radius: 1.25rem 1.25rem 0 0;
    background: #1a1a1a;
    box-shadow: 0 0 4rem 2rem rgba(0, 0, 0, .8);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translateY(100%) scale(1);
    transition: transform .6s cubic-bezier(.19, 1, .22, 1);
  }

  .avara-detail.is-open .avara-detail-panel {
    transform: translateY(0) scale(1);
  }

  .avara-detail-close {
    display: flex;
  }

  .avara-detail-visual {
    width: 8.5rem;
    min-height: 6.5rem;
    margin: 1.5rem auto 1.75rem;
  }

  body.avara-detail-open .avara-anchor:not(.is-selected) {
    --opacity: 0;
    transition: opacity .1s cubic-bezier(.19, 1, .22, 1), transform .4s cubic-bezier(.19, 1, .22, 1);
  }

  body.avara-detail-open .avara-anchor.is-selected {
    --x: 0px;
    --y: -125px;
  }

  body.avara-detail-open .avara-anchor.is-selected .avara-scale {
    --scale: .55;
  }

  .avara-bottom {
    bottom: 2rem;
  }
}

@media screen and (max-width: 640px) {
  .avara-wordmark {
    font-size: .75rem;
  }

  .avara-social {
    gap: .38rem;
    font-size: .72rem;
  }

  .wechat-copy-state {
    left: calc(50% + 3.7rem);
    bottom: .22rem;
    padding: .56rem .68rem .6rem;
    font-size: .64rem;
  }

  .wechat-copy-state strong {
    font-size: .7rem;
  }
}

@media screen and (max-width: 420px) {
  .avara-bottom {
    bottom: 1.5rem;
  }
}

.ambient {
  position: fixed;
  width: 38vw;
  height: 38vw;
  border-radius: 999px;
  filter: blur(68px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.ambient-one {
  top: -10vw;
  left: -12vw;
  background: #ae8555;
}

.ambient-two {
  right: -16vw;
  bottom: 5vw;
  background: #3b6574;
}

.grid-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 56px;
}

.glass-card {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.032)),
    linear-gradient(180deg, rgba(174, 133, 85, 0.035), transparent 42%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
}

.glass-card::after {
  position: absolute;
  inset: 1px;
  content: "";
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 24%, transparent 70%, rgba(174, 133, 85, 0.09));
  opacity: 0.46;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  color: var(--brand-bright);
  background: rgba(174, 133, 85, 0.12);
  box-shadow: 0 0 34px rgba(174, 133, 85, 0.14);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.02em;
}

.brand small,
.topbar-meta,
.eyebrow,
.panel-label,
.metric-card span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.separator {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 18px var(--brand);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: stretch;
  gap: 34px;
  min-height: 560px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h2 {
  max-width: 900px;
  margin: 10px 0 18px;
  font-size: clamp(58px, 8.8vw, 132px);
  font-weight: 650;
  line-height: 0.88;
  letter-spacing: -0.09em;
  text-wrap: balance;
}

.hero-text {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.72;
}

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

.quick-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 17px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: rgba(247, 244, 239, 0.76);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  transition: transform var(--dur-2) var(--ease-out-quart), border-color var(--dur-2) ease, background var(--dur-2) ease, color var(--dur-2) ease;
}

.quick-action.primary {
  border-color: rgba(224, 180, 126, 0.62);
  color: #080604;
  background: linear-gradient(135deg, #e0b47e, #ae8555);
}

.hero-visual {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(224, 180, 126, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    #080808;
}

.hero-visual::before {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 26px;
  pointer-events: none;
}

.visual-label,
.visual-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(247, 244, 239, 0.58);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-label strong {
  color: var(--brand-bright);
  font-weight: 600;
}

.hero-visual img {
  display: block;
  width: min(100%, 520px);
  margin: auto;
  filter: drop-shadow(0 32px 70px rgba(0, 0, 0, 0.72));
  transform: scale(1.04);
}

.visual-caption {
  flex-wrap: wrap;
  justify-content: flex-start;
  text-transform: none;
}

.visual-caption span,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gray);
  box-shadow: 0 0 18px currentColor;
}

.dot.online { background: var(--green); color: var(--green); }
.dot.dev { background: var(--yellow); color: var(--yellow); }
.dot.private { background: var(--gray); color: var(--gray); }
.dot.error { background: var(--red); color: var(--red); }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-card {
  min-height: 108px;
  padding: 17px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: rgba(7, 7, 7, 0.88);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.metric-card strong {
  display: block;
  margin: 10px 0 6px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1;
  letter-spacing: -0.065em;
}

.metric-card small {
  color: var(--faint);
  font-size: 13px;
}

.command {
  display: grid;
  gap: 9px;
  margin: 14px 0 46px;
  padding: 13px 16px 12px;
  border-color: rgba(174, 133, 85, 0.22);
  border-radius: 22px;
  overflow: hidden;
  transition: border-color var(--dur-2) ease, box-shadow var(--dur-2) ease, background var(--dur-2) ease;
}

.command:focus-within {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px rgba(174, 133, 85, 0.12), var(--shadow-lifted);
}

.command-main {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
}

.command-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(174, 133, 85, 0.11);
  color: var(--brand-bright);
}

.command-icon svg,
.project-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.command input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 650;
}

.command input::placeholder {
  color: var(--faint);
}

.clear-search {
  display: none;
  padding: 6px 9px;
  border: 1px solid rgba(174, 133, 85, 0.22);
  border-radius: 999px;
  color: rgba(244, 239, 232, 0.72);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font-size: 12px;
}

.command.has-query .clear-search {
  display: inline-flex;
}

.search-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-left: 54px;
  color: var(--faint);
  font-size: 12px;
}

#searchState {
  color: var(--brand-bright);
  white-space: nowrap;
}

kbd {
  min-width: 30px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 9px;
  color: rgba(244, 239, 232, 0.58);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.section-block {
  margin-top: 42px;
}

.section-heading,
.side-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading h2,
.side-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: -0.05em;
}

.section-heading p,
.side-heading p {
  margin: 0;
  color: var(--muted);
}

.section-heading.compact h2,
.side-heading h2 {
  font-size: 28px;
}

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

.project-grid.featured {
  gap: 22px;
}

.project-grid.featured .project-card {
  min-height: 430px;
  padding: 0;
  border-radius: 30px;
}

.project-grid.featured .project-card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%),
    radial-gradient(circle at 50% 8%, color-mix(in srgb, var(--accent, #ae8555) 20%, transparent), transparent 42%);
}

.project-grid.featured .project-card::after {
  opacity: 0.34;
}

.project-grid.featured .project-card .card-top {
  min-height: 196px;
  align-items: flex-start;
  padding: 17px;
  background-position: center 38px;
  background-repeat: no-repeat;
  background-size: min(76%, 260px) auto;
}

.project-grid.featured .project-card:nth-child(1) .card-top {
  background-image: url("./模板1/Avara_files/aave.9745096a.png");
}

.project-grid.featured .project-card:nth-child(2) .card-top {
  background-image: url("./模板1/Avara_files/gho.eae3e780.png");
}

.project-grid.featured .project-card:nth-child(3) .card-top {
  background-image: url("./模板1/Avara_files/lens.0f125713.png");
}

.project-grid.featured .project-card .card-body,
.project-grid.featured .project-card .tag-list,
.project-grid.featured .project-card .action-row {
  margin-inline: 19px;
}

.project-grid.featured .project-card .action-row {
  margin-bottom: 19px;
}

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

.project-group h3 {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.project-card {
  position: relative;
  display: flex;
  min-height: 198px;
  flex-direction: column;
  gap: 14px;
  padding: 19px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #080808;
  transition: transform var(--dur-2) var(--ease-out-quart), border-color var(--dur-2) ease, background var(--dur-2) ease, box-shadow var(--dur-2) ease;
}

.project-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent, #ae8555) 26%, transparent), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 58%);
  opacity: 0.95;
  pointer-events: none;
}

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

@media (hover: hover) {
  .project-card:hover,
  .backend-item:hover,
  .quick-action:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent, #ae8555) 54%, rgba(255,255,255,0.14));
  }

  .project-card:hover {
    box-shadow: var(--shadow-lifted);
  }

  .project-grid.featured .project-card:hover .card-top {
    background-size: min(82%, 286px) auto;
  }

  .action-row a:hover,
  .clear-search:hover {
    border-color: rgba(210, 167, 117, 0.5);
    background: rgba(174, 133, 85, 0.16);
  }
}

.card-top,
.action-row,
.tag-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-top {
  justify-content: space-between;
}

.project-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent, #ae8555) 42%, transparent);
  border-radius: 15px;
  color: color-mix(in srgb, var(--accent, #ae8555) 86%, white);
  background: color-mix(in srgb, var(--accent, #ae8555) 15%, transparent);
  box-shadow: 0 0 28px color-mix(in srgb, var(--accent, #ae8555) 16%, transparent);
}

.status-pill {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.card-body {
  flex: 1;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.032em;
}

.project-grid.featured .card-body h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.card-body p {
  display: -webkit-box;
  min-height: 45px;
  margin: 0 0 12px;
  overflow: hidden;
  color: rgba(247, 244, 239, 0.62);
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.project-grid.featured .card-body p {
  min-height: 50px;
  color: rgba(247, 244, 239, 0.68);
  font-size: 15px;
}

.card-body code {
  color: color-mix(in srgb, var(--accent, #ae8555) 78%, rgba(244, 239, 232, 0.58));
  font-family: "JetBrains Mono", "SF Mono", Consolas, monospace;
  font-size: 11px;
  word-break: break-all;
}

mark {
  padding: 0 3px;
  border-radius: 5px;
  color: #15100a;
  background: var(--brand-bright);
}

.tag-list {
  flex-wrap: wrap;
}

.tag-list span {
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 999px;
  color: rgba(244, 239, 232, 0.58);
  background: rgba(255, 255, 255, 0.028);
  font-size: 11px;
}

.action-row {
  flex-wrap: wrap;
  margin-top: auto;
}

.action-row a,
.backend-item {
  cursor: pointer;
}

.action-row a {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  color: rgba(244, 239, 232, 0.82);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  transition: background var(--dur-1) ease, border-color var(--dur-1) ease, color var(--dur-1) ease;
}

.action-row a:first-child {
  border-color: color-mix(in srgb, var(--accent, #ae8555) 52%, transparent);
  color: var(--text);
  background: color-mix(in srgb, var(--accent, #ae8555) 24%, transparent);
}

.layout-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.side-column {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}

.side-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.backend-list {
  display: grid;
  gap: 10px;
}

.backend-item {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform var(--dur-2) var(--ease-out-quart), border-color var(--dur-2) ease, background var(--dur-2) ease;
}

.backend-item strong {
  font-size: 15px;
}

.backend-item span,
.health-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

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

.health-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.health-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.health-list strong {
  color: var(--brand-bright);
  font-size: 13px;
  font-family: "JetBrains Mono", "SF Mono", Consolas, monospace;
}

.empty-state {
  padding: 38px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.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;
}

@media (max-width: 1100px) {
  .hero-grid,
  .layout-split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-visual {
    min-height: 460px;
  }

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

  .side-column {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 24px, 720px);
    padding-top: 14px;
  }

  .topbar,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar {
    padding-bottom: 24px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-copy h2 {
    font-size: clamp(44px, 13vw, 78px);
    line-height: 0.96;
  }

  .quick-actions {
    margin-top: 20px;
  }

  .project-grid,
  .project-group .project-grid,
  .side-column {
    grid-template-columns: 1fr;
  }

  .command-main {
    grid-template-columns: 40px minmax(0, 1fr) auto;
  }

  .command-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .command kbd {
    display: none;
  }

  .search-meta {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 54px;
  }
}

@media (max-width: 620px) {
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .metric-card {
    min-height: 98px;
    padding: 13px;
  }

  .metric-card strong {
    margin: 8px 0 5px;
    font-size: 30px;
  }

  .metric-card small {
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 20px, 460px);
    padding-bottom: 42px;
  }

  .hero-copy h2 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.65;
  }

  .topbar-meta {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 360px;
    padding: 16px;
    border-radius: 26px;
  }

  .hero-visual img {
    width: min(100%, 360px);
    transform: scale(1);
  }

  .visual-caption {
    gap: 10px;
  }

  .command {
    margin-bottom: 34px;
    padding: 12px;
    border-radius: 20px;
  }

  .command-main {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .command-icon {
    width: 38px;
    height: 38px;
  }

  .clear-search {
    padding: 6px 8px;
    font-size: 12px;
  }

  .search-meta {
    padding-left: 47px;
  }

  #searchHint {
    display: none;
  }

  .project-card {
    min-height: 190px;
  }

  .project-grid.featured .project-card {
    min-height: 390px;
  }

  .project-grid.featured .project-card .card-top {
    min-height: 172px;
    background-size: min(72%, 230px) auto;
  }

  .section-block {
    margin-top: 30px;
  }
}

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