:root {
  --bg: #000000;
  --bg-deep: #0a0610;
  --panel: rgba(28, 11, 45, 0.4);
  --panel-inner: rgba(13, 5, 21, 0.96);
  --panel-strong: #1b0d28;
  --accent: #ab5efa;
  --accent-soft: #d8b7ff;
  --accent-pale: #f2dcff;
  --text: #f5f7ff;
  --text-muted: rgba(245, 247, 255, 0.68);
  --stroke: rgba(255, 255, 255, 0.14);
  --stroke-glow: rgba(203, 122, 255, 0.46);
  --radius: 8px;
  --frame-width: 480px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 0%, rgba(123, 41, 182, 0.24), transparent 34%),
    radial-gradient(circle at 50% 78%, rgba(123, 41, 182, 0.2), transparent 28%),
    linear-gradient(180deg, #000 0%, #07040a 56%, #12031b 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

body {
  padding: 0;
}

a {
  color: inherit;
}
button, input {
  border: none;
  font: inherit;
}
input::placeholder { color: white;}
.text-success{ color: rgb(11, 134, 88) !important;}
.text-warning{ color: rgb(215, 132, 0) !important;}
.text-danger{ color: #ff4141 !important;}
.miner-badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}
.miner-badge--merge {
    background: rgba(118, 62, 176, .92);
    color: #fff !important;
}
.confirm-button {
    width: 100%;
    min-height: 40px;
    margin-top: 14px;
    border-radius: 999px;
    background: #5d2f8f;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.confirm-button.outline {
    border: 1px solid rgba(193, 114, 255, .95);
    background: transparent;
    color: rgba(193, 114, 255, .95);
    box-shadow: inset 0 1px rgba(255, 255, 255, .08);
}
.confirm-button.success {
    background: linear-gradient(90deg, #1aa06d, #2ecb89);
    color: #fff;
}
.page-shell {
  display: flex;
  justify-content: center;
  background: #222;
  min-height: 100vh;
}
.page-frame{
    position: relative; z-index: 1;
    overflow: hidden;
    width: min(100%, 480px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 66px 0 0;
    background: #000;
}
.page-frame--with-bg:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--page-bg-image) center top / cover no-repeat;
    opacity: .2;
    pointer-events: none;
}
.mobile-frame {
  /*width: 100%;
  max-width: var(--frame-width);
  background:
    radial-gradient(circle at 50% 10%, rgba(171, 94, 250, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(4, 1, 8, 0.98) 42%, rgba(14, 3, 22, 1) 100%);*/

  position: relative;
  overflow: hidden;
  width: min(100%, 480px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 66px 0 0;
  background: #000;
}

.landing-main {
  padding-left: 16px;
  padding-right: 16px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 30;
    width: min(100vw, 480px);
    transform: translate(-50%);
}


.landing-navbar,
.brand,
.token-meta,
.market-head,
.social-list,
.footer-brand,
.intro-panel__header,
.market-chart__grid,
.axis-y,
.axis-x {
  display: flex;
}

.landing-navbar {
  /*min-height: 64px;
  align-items: center;
  justify-content: space-between;*/
  padding: 16px !important;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 60px;
  padding: max(16px, env(safe-area-inset-top) + 8px) 18px 16px;
  background: #0003;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
}

.brand,
.footer-brand {
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
}

.brand:hover,
.footer-brand:hover {
  color: white;
  text-decoration: none;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: var(--accent);
}

.brand-text {
  font-size: 15px;
  letter-spacing: 0.08em;
}
.top-menu-actions{
  display: flex;
  gap: 18px;
}
.top-menu-locale{
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}

.top-menu-locale svg{
  width: 27px;
  height: 27px;
  display: block;
}

.top-menu-locale.is-active{
  opacity: .92;
  transform: translateY(1px) rotate(10deg);
}

.nav-toggle {
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .24s ease, opacity .24s ease;
  transform-origin: center;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.menu-panel {
  display: grid;
  gap: 10px;
  padding: 0 0 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.menu-panel a {
  text-decoration: none;
}

.top-menu-locale-menu{
  position: fixed;
  z-index: 60;
  min-width: 124px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
  background: #3e007ecc;
  overflow: hidden;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(.98);
  max-height: 0;
  transform-origin: top right;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .36);
  transition: max-height .26s ease, opacity .2s ease, transform .26s cubic-bezier(.22, 1, .36, 1), visibility .2s ease;
}

.top-menu-locale-menu::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, .1), transparent 32%), linear-gradient(320deg, rgba(255, 255, 255, .04), transparent 38%);
  pointer-events: none;
}

.top-menu-locale-menu.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.top-menu-locale-menu__item{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 10px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: #fffffff0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.15;
    text-align: left;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.top-menu-locale-menu__item:hover, .top-menu-locale-menu__item--active {
    background: linear-gradient(90deg, #ffffff1f, #ffffff08);
    color: #fff;
    transform: translate(1px);
}

.top-menu-backdrop{
  position: fixed !important;
  inset: 0 auto 0 50%;
  z-index: 45 !important;
  width: min(100vw, 480px);
  transform: translateX(-50%);
  background: #06010c5c;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}

.top-menu-backdrop.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.top-menu-panel {
  width: min(78vw, 308px);
  max-width: 308px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: max(20px, env(safe-area-inset-top) + 18px) 18px max(22px, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, #1a032efc, #0f021c), radial-gradient(circle at top left, rgba(145, 86, 255, .22), transparent 30%);
  border-right: 1px solid rgba(183, 122, 255, .28);
  box-shadow: 22px 0 48px #00000075;
  overflow: hidden;
  overflow-y: auto;
  transform: translateX(-28px) scale(.985);
  opacity: 0;
  transition: transform .34s cubic-bezier(.22, 1, .36, 1), opacity .24s ease;
  will-change: transform, opacity;
}

.top-menu-backdrop.is-open .top-menu-panel{
  transform: translateX(0) scale(1);
  opacity: 1;
}
.top-menu-panel__brand{
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.top-menu-panel__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.top-menu-panel__brand-logo{
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
}
.top-menu-panel__brand-logo-image{
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
}

.top-menu-panel__close{
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.top-menu-panel__close:hover{
  background: #ffffff0f;
  transform: translateY(-1px);
}
.top-menu-panel__close span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.top-menu-panel__close span:first-child {
  transform: rotate(45deg);
}
.top-menu-panel__close span:last-child {
  transform: rotate(-45deg);
}
.top-menu-nav{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.top-menu-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: none;
  color: #fffffff0;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.top-menu-item:hover,
.top-menu-item.active {
  background: linear-gradient(180deg, #5d29a147, #5d29a124), #ffffff05;
  border-color: #ba7fff3d;
  transform: translateX(2px);
  box-shadow: inset 0 1px #ffffff08;
  color: white;
  text-decoration: none;
}

.top-menu-item__icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.top-menu-item__icon img {
    width: 22px;
    height: 22px;
    display: block;
}
.top-menu-item__text {
    min-width: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-menu-panel__footer {
    display: flex;
    align-items: stretch; 
    padding-top: 14px;
    gap: 10px;            
    width: 100%;          
    box-sizing: border-box;
}
.top-menu-panel__wallet, 
.top-menu-panel__wallet-address, 
.top-menu-panel__wallet-disconnect {
    flex: 1;              /* Forces equal 50/50 distribution */
    min-width: 0;         /* Allows text inside to scale down smoothly */
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;       /* Reduced from 24px so the text has maximum breathing room */
    border-radius: 999px;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
    
    /* Container Query: Turns the element into a relative measuring tool */
    container-type: inline-size; 
}

/* Theme color definitions matching your requirements */
.top-menu-panel__wallet {
    background: #ab5efa;
    border: 1px solid #ab5efa;
}

.top-menu-panel__wallet-address {
    background: #231942;
    border: 1px solid #231942;
    cursor: default;
}

.top-menu-panel__wallet-disconnect {
    background: #3f1737;
    border: 1px solid #3f1737;
}

.top-menu-panel__wallet span, 
.top-menu-panel__wallet-address span, 
.top-menu-panel__wallet-disconnect span {
    min-width: 0;
    color: #fff;
    font-weight: 500;
    letter-spacing: .01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
    font-size: clamp(11px, 14cqw, 15px); 
}

.top-menu-panel__wallet-disconnect span {
    color: #ff4a85;
}

body.menu-open{
  overflow: hidden;
}
.page-content{
    flex: 1;
    min-height: 0;
    padding: 18px 20px 32px;
}
.landing-main {
  /*padding-bottom: 40px;
  background:
    radial-gradient(circle at center top, rgba(171, 94, 250, 0.12), transparent 22%);*/

  margin: -18px -20px -32px;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  font-family: HarmonyOS Sans SC, Inter, system-ui, sans-serif;
  background: url('../img/landing-bg.png') center -50px / 100% auto no-repeat;
}
.trading-main {
  margin: -18px -20px -32px;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  font-family: HarmonyOS Sans SC, Inter, system-ui, sans-serif;
  background: url('../img/trading-bg.png') center -50px / 100% auto no-repeat;
}

.hero-section {
    position: relative;
    height: clamp(300px, min(100vw, 480px) * 1.7, 390px);
    padding: 1px 18px 26px;
    isolation: isolate;
}
.hero-copy{
  position: relative;
  z-index: 2;
  padding-top: 0;
  text-align: center;
  text-shadow: 0 0 16px rgba(255, 255, 255, .22);

  p{
    width: min(392px, 88vw);
    margin: 0 auto;
    padding: 20px;
    color: #ffffffe6;
    font-size: 20px;
    line-height: 1.22;
    font-weight: 600;
    text-transform: capitalize;
  }
}

.eyebrow,
.body-copy,
.feature-list li,
.license-item p,
.license-item small,
.vision-copy,
.hero-subtitle {
  color: var(--text-muted);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-title,
.gradient-title,
.market-chart__score,
.stat-panel p,
.advantage-item strong,
.license-item h3,
.footer-copy h2 {
  background: linear-gradient(90deg, #fff 0%, var(--accent-pale) 36%, #c99cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.08;
  font-weight: 800;
}

.hero-subtitle {
  max-width: 400px;
  margin: 18px auto 0;
  font-size: 13px;
  line-height: 1.55;
}

.hero-stage {
  margin-top: 26px;
  padding: 16px 10px 0;
  display: grid;
  gap: 14px;
}

.hero-coins {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-coins span,
.token-badge,
.info-icon,
.social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.hero-coins span {
  width: 44px;
  height: 44px;
  background: radial-gradient(circle at 35% 30%, #fff, #a94df4 62%, #5d1798 100%);
  box-shadow: 0 0 20px rgba(171, 94, 250, 0.42);
  font-size: 11px;
  font-weight: 800;
}

.hero-machine {
  min-height: 255px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(120px, 150px) 1fr;
  gap: 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(48, 18, 72, 0.98), rgba(8, 2, 15, 0.98)),
    radial-gradient(circle at 50% 20%, rgba(171, 94, 250, 0.22), transparent 30%);
  box-shadow:
    inset 0 0 0 1px rgba(237, 220, 255, 0.1),
    0 18px 40px rgba(0, 0, 0, 0.42);
}

.hero-core {
  min-height: 180px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  background: radial-gradient(circle at 35% 25%, #f6ecff, #9a44ef 58%, #46136e 100%);
  box-shadow: 0 0 32px rgba(171, 94, 250, 0.34);
}

.hero-core__glyph {
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
}

.hero-core strong {
  font-size: 14px;
  letter-spacing: 0.1em;
}

.hero-racks {
  display: grid;
  gap: 12px;
  align-content: center;
}

.hero-racks span {
  min-height: 44px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(171, 94, 250, 0.72), rgba(34, 10, 54, 0.95));
  box-shadow: inset 0 0 0 1px rgba(237, 220, 255, 0.12);
}

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

.hero-gridlines span {
  min-height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(171, 94, 250, 0.88), transparent);
}

.section-title {
  /*margin: 0 0 22px;*/
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
}

.info-card, .market-card, .burn-stats-card, .vision-card, .advantage-grid, .license-card, .orbit-card, .panel-frame {
    position: relative;
    margin: 0 16px 30px;
    border-radius: 8px;
    overflow: hidden;
    background: #1c0b2d66;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 10px;

  &::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(290deg, #cbc8ce00 7.42%, #eddcff, #e5ccff00 92.84%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
}
.intro-card-body, .market-card-body, .burn-stats-card-body, .vision-card-body, .advantage-grid-body, .license-card-body, .orbit-card-body {
    padding: 12px;
    background: linear-gradient(163.96deg, #ab5efa -112.27%, #000 77.58%);
    border-radius: 8px;
}

* {

.burn-stats-card-body {
  padding:12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  background: transparent;

  &:before {
    background: linear-gradient(305deg, #cbc8ce00 7.42%, #eddcff, #e5ccff00 92.84%);
  }
}

.burn-stat-item{
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}
.burn-stat-item span {
    color: #fff9;
    font-size: 12px;
    line-height: 1.2;
}

.burn-stat-divider {
    width: 1px;
    height: 64px;
    margin: 0 14px;
    background: linear-gradient(180deg, transparent, rgba(237, 220, 255, .38), transparent);
}
.page-gradient-title{
  background: linear-gradient(90deg, #ffffff 0%, #f2dcff 36%, #c99cff 100%);;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.panel-body {
  padding: 12px;
  border-radius: var(--radius);
  background: linear-gradient(163.96deg, rgb(171, 94, 250) -112.27%, rgb(0, 0, 0) 77.58%);
}


.market-panel {
  min-height: 301px;
}

.market-head {
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.token-badge {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: radial-gradient(circle at 35% 30%, #fff, #a94df4 68%);
  font-size: 12px;
  font-weight: 800;
}
.token-meta{
  display: flex;
  align-items: center;
}
.token-meta strong {
  font-size: 16px;
  font-weight: 700;
}

.market-stats {
  display: grid;
  gap: 4px;
  margin: 0;
}

.market-stats div {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  font-size: 10px;
}

.market-stats dt,
.market-stats dd {
  margin: 0;
}

.market-stats dt {
  color: var(--text-muted);
  font-weight: 400;
}

.market-stats dd {
  color: var(--accent-soft);
  font-weight: 700;
}

.market-chart__score {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  position: absolute;
  left: 80px;
  top: 125px;
}

.market-chart__grid {
  gap: 10px;
}

.axis-y {
  width: 36px;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  text-align: right;
}

.chart-svg-wrap {
  flex: 1;
}

.chart-svg {
  display: block;
  width: 100%;
  height: auto;
}

.chart-lines line {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1;
}

.chart-area {
  fill: none; /* rgba(171, 94, 250, 0.14);*/
}

.chart-line {
  fill: none;
  stroke: url(#novaLine);
  stroke-width: 1; /*3*/
  /*stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(171, 94, 250, 0.7));*/
}

.axis-x {
  justify-content: space-between;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.stat-panel {
  margin-bottom: 0;
}

.stat-panel .panel-body {
  min-height: 88px;
  background: linear-gradient(180deg, rgba(27, 13, 40, 0.85), rgba(12, 5, 19, 0.95));
}

.stat-panel h3 {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 400;
}

.stat-panel p {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.intro-panel .panel-body,
.advantage-panel .panel-body,
.license-panel .panel-body,
.orbit-panel .panel-body,
.vision-panel .panel-body {
  background:
    linear-gradient(163.96deg, rgb(171, 94, 250) -112.27%, rgb(0, 0, 0) 77.58%);
}

.intro-panel__header {
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.info-icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(237, 220, 255, 0.8);
  color: var(--accent-pale);
  font-size: 12px;
  font-weight: 700;
}

.gradient-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.body-copy,
.vision-copy,
.license-item p,
.license-item small {
  font-size: 12px;
  line-height: 1.45;
  color: #ffffff9e;
}

.body-copy {
  margin: 0;
}

.divider-line {
  height: 1px;
  margin: 22px 0 19px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18) 14%, rgba(203, 122, 255, 0.46) 50%, rgba(255, 255, 255, 0.18) 86%, transparent);
}

.intro-panel h3,
.license-item h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
}

.feature-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  gap: 8px;

  li{
    min-height: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    color: #fff9;
    font-size: 12px;
    line-height: 1.24;

    &::before {
      content: "";
      flex: 0 0 auto;
      width: 2px;
      height: 2px;
      border-radius: 50%;
      background: #fff9;
    }
  }
}

.section-stack {
  margin-top: 4px;
}

.advantage-panel .panel-body,
.license-panel .panel-body {
  background: linear-gradient(163.96deg, rgb(171, 94, 250) -112.27%, rgb(0, 0, 0) 77.58%);
}

.advantage-list {
  display: grid;
}

.advantage-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  padding: 12px 8px 12px 10px;
}

.advantage-item:not(:last-child),
.license-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-item span {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(90deg, #fff 0%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.advantage-item strong {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

.advantage-item p {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.advantage-item--reverse {
  grid-template-columns: 1fr 52px;
}

.advantage-item--reverse span {
  text-align: right;
}

.license-item {
  padding: 0 0 18px;
}

.license-item + .license-item {
  padding-top: 18px;
}
.license-item:last-child{ padding-bottom: 0;}

.license-item p {
  margin: 0 0 10px;
}

.license-item small {
  display: block;
}

.ecosystem-section {
  padding-top: 4px;
}

.orbit-panel {
  margin-bottom: 30px;
}

.orbit-panel__body {
  min-height: 320px;
  display: grid;
  place-items: center;
  background: linear-gradient(163.96deg, rgb(171, 94, 250) -112.27%, rgb(0, 0, 0) 77.58%);
}

.orbit-shell {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.orbit-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.orbit-ring--outer {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 0 0 10px rgba(171, 94, 250, 0.08),
    0 0 42px rgba(171, 94, 250, 0.12);
}

.orbit-ring--outer span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  text-align: center;
}

.orbit-ring--outer span:nth-child(1) { justify-self: start; align-self: start; }
.orbit-ring--outer span:nth-child(2) { justify-self: end; align-self: start; }
.orbit-ring--outer span:nth-child(3) { justify-self: end; align-self: center; }
.orbit-ring--outer span:nth-child(4) { justify-self: center; align-self: end; }
.orbit-ring--outer span:nth-child(5) { justify-self: start; align-self: center; }

.orbit-ring--inner {
  width: 74%;
  height: 74%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at center, rgba(171, 94, 250, 0.4), rgba(14, 4, 22, 0.92));
}

.orbit-core {
  width: 72%;
  height: 72%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  background: radial-gradient(circle at 35% 30%, #f6ecff, #9642eb 58%, #46136e 100%);
  box-shadow: 0 0 28px rgba(171, 94, 250, 0.35);
}

.orbit-core__mark {
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
}

.orbit-core strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}
.orbit-card-body{
    position: relative;
    height: clamp(286px, 74vw, 320px);
    padding: 0;
    overflow: hidden;
}
.orbit-visual{
    position: absolute;
    top: 48%;
    left: 50%;
    width: min(55%, 400px);
    max-width: 440px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    filter: drop-shadow(0 0 18px rgba(183, 84, 255, .24));
}

.orbit-label{
    position: absolute;
    z-index: 1;
    color: #fffffff5;
    font-size: clamp(12px, 3.1vw, 28px);
    line-height: 1.32;
    font-weight: 400;
    white-space: nowrap;
    font-size: 14px;
}

.orbit-label--tl{
    top: 15%;
    right: 75%;
    text-align: right;
}
.orbit-label--tr{
    top: 15%;
    left: 75%;
}
.orbit-label--r {
    top: 57%;
    left: 80%;
}
.orbit-label--b {
    bottom: 6%;
    left: 50%;
    transform: translate(-50%);
}
.orbit-label--l{
    top: 57%;
    right: 80%;
}
.vision-panel .panel-body {
  padding-top: 21px;
  padding-left: 14px;
  padding-right: 14px;
}

.vision-copy {
  max-width: 360px;
  margin: 0 auto 18px;
}
.vision-image{
    position: relative;
    height: 168px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .16);
}

.vision-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.08) brightness(.85);
}
.vision-art {
  min-height: 168px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.vision-card-mini {
  min-height: 120px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background:
    radial-gradient(circle at 50% 20%, rgba(217, 183, 255, 0.24), transparent 40%),
    linear-gradient(180deg, rgba(78, 25, 118, 0.56), rgba(21, 8, 31, 0.94));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-footer {
    margin-top: 50px;
    padding: 45px 20px 56px;
    text-align: center;
    background: radial-gradient(circle at 50% 0, rgba(123, 41, 182, .18), transparent 36%);
    position: relative;
}

.site-footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(270deg, #fff0, #fff 51.44%, #fff0);
    box-shadow: 0 0 12px #eddcff1a, 0 0 3px #eddcff29;
    pointer-events: none;
}

.footer-brand {
  justify-content: center;
  margin-bottom: 28px;

    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
}
.footer-brand strong{
    font-size: 26px;
    line-height: 1;
}

.footer-copy h2 {
  margin: 50px 0 0;
  font-size: 24px;
  line-height: 1.1;
}

.footer-copy p {
    margin: 24px 0 0;
    font-size: 16px;
    font-weight: 700;
}

.social-list {
  justify-content: center;
  gap: 18px;
  margin: 30px 0 28px;
}

.social-list a {
  width: 40px;
  height: 40px;
  text-decoration: none;
  color: #ede3ff;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(237, 220, 255, 0.16);
}

.copyright {
  display: block;
  margin-top: 49px;
  color: #ab5efa66;
  font-size: 14px;
  text-align: center;
}

.alert-neuro {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  padding: 12px 12px 10px 44px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.3;
}

.alert-neuro::before {
  content: "!";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.alert-neuro__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alert-neuro__title,
.alert-neuro__text {
  margin: 0;
}

.alert-neuro__title {
  font-weight: 700;
}

.alert-neuro__text {
  color: #ffffffe6;
  font-weight: 600;
}

.alert-neuro.alert-warning {
  border-color: rgba(255, 153, 0, 0.82);
  background: rgba(85, 31, 4, 0.42);
  color: #c9aaa7;
}

.alert-neuro.alert-warning::before {
  background: #ff9c12;
  color: #4f1702;
}

.alert-neuro.alert-danger {
  border-color: rgba(188, 39, 39, 0.78);
  background: rgba(108, 8, 24, 0.72);
  color: #ffb1b1;
}

.alert-neuro.alert-danger::before {
  background: #ff5c2e;
  color: #fff;
}

.alert-neuro--inline {
  align-items: center;
  min-height: 42px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.alert-neuro--inline::before {
  top: 50%;
  transform: translateY(-50%);
}

.badge-neuro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.badge-neuro-power {
  background: #955800;
  color: #ffe1a7;
}

.badge-neuro-success,
.badge-neuro.badge-success {
  background: rgba(27, 128, 99, 0.72);
  color: #8dffd9;
}

@media (max-width: 479.98px) {
  .hero-copy h1 {
    font-size: 26px;
  }

  .hero-machine {
    grid-template-columns: 1fr;
  }

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

  .market-head,
  .market-chart__grid {
    display: grid;
    gap: 14px;
  }

  .market-stats {
    justify-content: start;
  }

  .axis-y {
    width: 100%;
    flex-direction: row;
    text-align: left;
  }

  .axis-x {
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .vision-art {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 576px) {
  body {
    /*padding: 24px 0;*/
  }

  .mobile-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  }
}
