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


@font-face {
  font-family: "Sora";
  src:
    url("/assets/font/Sora-Thin.woff2") format("woff2"),
    url("/assets/font/Sora-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src:
    url("/assets/font/Sora-ExtraLight.woff2") format("woff2"),
    url("/assets/font/Sora-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src:
    url("/assets/font/Sora-Light.woff2") format("woff2"),
    url("/assets/font/Sora-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src:
    url("/assets/font/Sora-Regular.woff2") format("woff2"),
    url("/assets/font/Sora-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src:
    url("/assets/font/Sora-Medium.woff2") format("woff2"),
    url("/assets/font/Sora-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src:
    url("/assets/font/Sora-SemiBold.woff2") format("woff2"),
    url("/assets/font/Sora-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src:
    url("/assets/font/Sora-Bold.woff2") format("woff2"),
    url("/assets/font/Sora-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src:
    url("/assets/font/Sora-ExtraBold.woff2") format("woff2"),
    url("/assets/font/Sora-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --hero-gradient-start: #94c3d6;
  --hero-gradient-end: #026992;
  --hero-text-color: #ffffff;
  --faq-bg-art: url("/assets/background-hero.webp");
  --faq-bg-art-size: 1020px;
  --faq-bg-art-opacity: 0.25;
  --profile-bg-art: url("/assets/background-hero.webp");
  --profile-bg-art-size: 900px;
  --profile-bg-art-opacity: 0.07;
  --profile-bg-art-position: center 8%;

  --page-bg: #020b13;
  --content-max-width: 1180px;
  --content-padding-x: 24px;

  --transition-fast: 0.18s ease-out;


  --hero-assets-gap: 360px;

  --hero-side-img-size: clamp(380px, 30vw, 460px);
  --hero-side-left-top: 365px;
  --hero-side-right-top: 390px;
  --hero-side-left-left: max(20px, calc(50% - 620px));
  --hero-side-right-right: max(20px, calc(50% - 640px));
  --hero-side-left-rotate: -10deg;
  --hero-side-right-rotate: 10deg;
  --hero-side-opacity: 0.3;


  --assets-bg-top: #020b13;
  --assets-bg-bottom: #01050d;
  --assets-middle-max-width: 2560px;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: var(--page-bg);
  color: var(--hero-text-color);
}


.hero-bg-wrapper {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--hero-gradient-end);
  background-image: linear-gradient(
      90deg,
      rgba(148, 195, 214, 0.82),
      rgba(2, 105, 146, 0.98)
    ),
    url("./img/hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  color: var(--hero-text-color);
}

.hero-bg-wrapper--standalone {
  min-height: auto;
  padding-bottom: 0;
}






.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;

  pointer-events: none;
}

.site-header-inner {
  pointer-events: auto;

  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;

  border-radius: 16px;

  background: transparent;
  backdrop-filter: none;

  transition:
    background-color 160ms ease,
    backdrop-filter 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}



.site-header.is-scrolled .site-header-inner {
  background: rgba(12, 14, 18, 0.52);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);

  transform: translateY(4px);
}



.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;

  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;

  color: #ffffff;
}

.site-logo-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 2px;
  border-radius: 12px;
  color: #0b0d12;
}

.site-logo-img {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}



.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}

.site-nav-link {
  position: relative;

  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);

  transition: color 120ms ease;
}

.site-nav-link:hover {
  color: #ffffff;
}

.site-nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;

  width: 0;
  height: 2px;
  border-radius: 2px;

  background: linear-gradient(
    90deg,
    #7c8cff,
    #5ef2c2
  );

  transform: translateX(-50%);
  transition: width 140ms ease;
}

.site-nav-link:hover::after {
  width: 100%;
}



.site-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}



@media (max-width: 900px) {
  .site-nav {
    display: none;
  }
}







.layout {
  width: 100%;
  margin: 0;
  padding: 12px 0 0;
}


.hero {
  padding-top: 84px;
  padding-bottom: var(--hero-assets-gap);
  position: relative;
}

.hero-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  text-align: center;
  position: relative;
  z-index: 2;
}


.hero-tags-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 2px;
}

.hero-tag {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-tag-main {
  background: #7dfbd4;
  color: #022334;
}

.hero-tag-outline {
  border: 1px solid rgba(125, 251, 212, 0.7);
  color: #e8fff9;
  background: transparent;
}


.hero-title {
  font-size: clamp(3.1rem, 4.7vw, 5rem);
  line-height: 1.08;
  font-weight: 700;
  margin: 0 0 10px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 10px;
  opacity: 0.95;
}

.hero-highlight {
  color: #7dfbd4;
  font-weight: 500;
  letter-spacing: 0.05em;
}


.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 14px;
}


.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  min-width: 170px;
  border-radius: 2px;
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: var(--hero-text-color);
  overflow: hidden;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    opacity var(--transition-fast);
}


.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 1px;
  width: 26%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(125, 251, 212, 0),
    rgba(125, 251, 212, 0.9),
    rgba(125, 251, 212, 0)
  );
  opacity: 0;
  transition:
    width 0.22s ease-out,
    opacity 0.22s ease-out;
}

.btn:hover::after {
  opacity: 1;
  width: 100%;
}


.btn-primary {
  background: #ffffff;
  color: #024c6b;
  border-color: transparent;
}

.btn-primary:hover {
  background: #eaf5ff;
  color: #02384f;
}


.btn-secondary {
  background: rgba(0, 0, 0, 0.14);
  color: #f5feff;
  border-color: rgba(216, 241, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(125, 251, 212, 0.75);
}

.btn-compact {
  min-width: 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.08);
  color: #eaf6ff;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 2px 16px rgba(0, 0, 0, 0.09),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.btn-compact:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(125, 251, 212, 0.65);
  color: #ffffff;
  opacity: 0.82;
}

.btn-compact::after {
  content: none;
}

.site-header .btn-compact {
  width: auto;
  max-width: none;
}


.hero-disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
  margin: 4px auto 0;
}



.assets-section {
  position: relative;
  width: 100%;
  background: linear-gradient(
    180deg,
    var(--assets-bg-top) 0%,
    var(--assets-bg-bottom) 100%
  );
  padding-top: var(--hero-assets-gap);
  padding-bottom: 50px;
}

.assets-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
}

.hero-middle-media {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(955px, 100%);
  z-index: 2;
}

.hero-middle-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  z-index: 1;
}

.hero-side-image {
  position: absolute;
  width: var(--hero-side-img-size);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 50px rgba(0, 0, 0, 0.45));
  pointer-events: none;
  opacity: var(--hero-side-opacity);
  z-index: 1;
  animation-duration: 9s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-play-state: paused;
  will-change: transform;
}

.hero-side-image--left {
  top: var(--hero-side-left-top);
  left: var(--hero-side-left-left);
  transform: rotate(var(--hero-side-left-rotate));
  animation-name: hero-side-float-left;
}

.hero-side-image--right {
  top: var(--hero-side-right-top);
  right: var(--hero-side-right-right);
  transform: rotate(var(--hero-side-right-rotate));
  animation-name: hero-side-float-right;
  animation-duration: 10s;
}

.hero-side-image.is-visible {
  animation-play-state: running;
}

@keyframes hero-side-float-left {
  0% {
    transform: translateY(0) rotate(var(--hero-side-left-rotate));
  }
  45% {
    transform: translateY(-14px) rotate(var(--hero-side-left-rotate));
  }
  70% {
    transform: translateY(8px) rotate(var(--hero-side-left-rotate));
  }
  100% {
    transform: translateY(0) rotate(var(--hero-side-left-rotate));
  }
}

@keyframes hero-side-float-right {
  0% {
    transform: translateY(0) rotate(var(--hero-side-right-rotate));
  }
  40% {
    transform: translateY(10px) rotate(var(--hero-side-right-rotate));
  }
  75% {
    transform: translateY(-12px) rotate(var(--hero-side-right-rotate));
  }
  100% {
    transform: translateY(0) rotate(var(--hero-side-right-rotate));
  }
}

@media (max-width: 768px) {
  .hero-side-image {
    display: none;
  }
}

.assets-header {
  max-width: 720px;
  margin: -120px 0 16px;
}

.assets-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  margin: 0 0 8px;
}

.assets-title {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.25;
  margin: 0;
  font-weight: 600;
  max-width: 520px;
}

.assets-coins-carousel {
  position: relative;
  margin: 82px auto 64px;
  max-width: 1050px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.assets-coins-row {
  position: relative;
  height: 75px;
  overflow: hidden;
  width: 100%;
}

.assets-coins-row--top {
  transform: translateY(-6px);
}

.assets-coins-row--middle {
  width: min(100vw, var(--assets-middle-max-width));
  max-width: var(--assets-middle-max-width);
  transform: translateY(0);
}

.assets-coins-row--bottom {
  transform: translateY(6px);
}

.assets-coins-row-inner {
  display: flex;
  align-items: center;
  gap: var(--marquee-gap, 35px);
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: none;
}

.assets-coins-row-track {
  display: inline-flex;
  align-items: center;
  gap: var(--marquee-gap, 35px);
  width: max-content;
}

@keyframes assets-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--marquee-distance, 0px)), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .assets-coins-row-inner {
    animation: none !important;
    transform: none !important;
  }

  .hero-side-image {
    animation: none !important;
    transform: none !important;
  }
}


.assets-coins-row::before,
.assets-coins-row::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.assets-coins-row::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(2, 11, 19, 0.98),
    rgba(2, 11, 19, 0)
  );
}

.assets-coins-row::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(1, 5, 13, 0.98),
    rgba(1, 5, 13, 0)
  );
}


.coin-chip {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 999px;
  gap: 5px;
  line-height: 1;
  white-space: nowrap;
}

.coin-chip-icon {
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 999px;
}


.coin-chip--center {
  padding: -2px 12px;

  justify-content: center;
}

.coin-chip--center .coin-chip-icon {
  width: 70px;
  height: 70px;
}

.coin-chip-symbol {
  margin-left: 14px;
  font-size: 1.65rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 500;
  opacity: 0.85;
}


.coin-chip--side {
  padding: 4px 10px;
  justify-content: center;
  opacity: 0.85;
  background: transparent;
}

.coin-chip--side .coin-chip-icon {
  width: 52px;
  height: 52px;
}

.coin-chip--side .coin-chip-symbol {
  margin-left: 10px;
  font-size: 1.0rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0.7;
}


@media (max-width: 720px) {
  .assets-coins-carousel {
    max-width: 100%;
    margin-top: 24px;
  }

  .assets-coins-row {
    height: 52px;
  }
}



.assets-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.80;
  margin: 10px auto 28px;
  max-width: 720px;
  text-align: center;
}


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

.assets-card {
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.24);
  padding: 16px 18px;
}

.assets-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.assets-card-text {
  font-size: 0.93rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

.supported-coins-shell {
  margin-bottom: 40px;
  padding-bottom: 40px;
}


@media (max-width: 720px) {
  .layout {
    padding-inline: 0;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .site-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .hero-inner {
    padding: 0 18px;
  }

  .hero {
    padding-top: 50px;
    padding-bottom: 150px;
  }

  .hero-cta-row {
    gap: 10px;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .site-header .btn-compact {
    width: auto;
    max-width: none;
  }

  .assets-section {
    padding-top: 180px;
    padding-bottom: 64px;
  }

  .assets-inner {
    padding: 0 18px;
  }

  .assets-header {
    margin-top: 32px;
    margin-bottom: 14px;
  }

  .assets-title {
    max-width: 100%;
  }

  .assets-coins-carousel {
    max-width: 100%;
    margin-top: 24px;
  }

  .assets-coins-row {
    height: 52px;
  }

  .assets-subtitle {
    margin-top: 4px;
    margin-bottom: 20px;
  }

  .assets-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}







.profile-section {
  padding: 85px 0 105px;
  position: relative;
  overflow: hidden;
}

.profile-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--profile-bg-art);
  background-repeat: no-repeat;
  background-size: var(--profile-bg-art-size);
  background-position: var(--profile-bg-art-position);
  opacity: var(--profile-bg-art-opacity);
  pointer-events: none;
  z-index: 0;
}

.profile-section > * {
  position: relative;
  z-index: 1;
}

.profile-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
}

.profile-header {
  max-width: 720px;
  margin: 0;
}

.profile-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  margin: 0 0 8px;
}

.profile-title {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.25;
  margin: 0 0 8px;
  font-weight: 600;
}

.profile-subtitle {
  font-size: 0.96rem;
  line-height: 1.6;
  opacity: 0.86;
  margin: 0;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: flex-start;
  margin-top: 0px;
}

.profile-top-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 25px;
}



.profile-hw-toggle {
  display: inline-flex;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.3);
  margin-bottom: 25px;
}

.profile-hw-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast);
}

.profile-hw-btn.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}



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

.profile-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-field--full {
  grid-column: 1 / -1;
}

.profile-field-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.profile-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.98;
}

.profile-field-hint {
  font-size: 0.75rem;
  opacity: 0.6;
}



.profile-select-shell {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.32);
  padding: 0 10px;
}

.profile-select {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--hero-text-color);
  font-size: 0.9rem;
  padding: 9px 26px 9px 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.profile-select:focus {
  outline: none;
}

.profile-select-shell:focus-within {
  border-color: rgba(125, 251, 212, 0.75);
}



.profile-select-arrow {
  position: absolute;
  right: 8px;
  width: 18px;
  height: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-select-arrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  transform: rotate(-45deg);
  margin-top: -2px;
}



.profile-input-shell {
  position: relative;
  display: flex;
  align-items: stretch;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.profile-input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--hero-text-color);
  font: inherit;
  padding: 12px 10px 9px 12px;
  min-width: 0;
}



.profile-input[type="number"]::-webkit-inner-spin-button,
.profile-input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.profile-input[type="number"] {
  -moz-appearance: textfield;
}

.profile-input:focus {
  outline: none;
}

.profile-input-shell:focus-within {
  border-color: rgba(125, 251, 212, 0.75);
}



.profile-input-unit {
  align-self: center;
  padding: 0 10px;
  font-size: 0.78rem;
  opacity: 0.8;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  white-space: nowrap;
}



.profile-input-spinner {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.profile-input-spinner-btn {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    opacity var(--transition-fast);
  opacity: 0.8;
}

.profile-input-spinner-btn::before {
  content: "";
  width: 6px;
  height: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
}

.profile-input-spinner-btn[data-spin="down"]::before {
  transform: rotate(-135deg);
}

.profile-input-spinner-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
}



.profile-side--results {
  align-self: stretch;
}

.profile-results-card {
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(
      circle at top left,
      rgba(125, 251, 212, 0.08),
      transparent 55%
    ),
    rgba(0, 0, 0, 0.4);
  padding: 22px 20px 22px;
}

.profile-results-header {
  margin-bottom: 26px;
}

.profile-results-title {
  margin: 0 0 5px;
  font-size: 1rem;
  font-weight: 600;
}

.profile-results-caption {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

.profile-miner-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px 0;
  border-radius: 2px;
  border: 1px solid rgba(125, 251, 212, 0.16);
  background: radial-gradient(
      circle at top left,
      rgba(125, 251, 212, 0.08),
      transparent 55%
    ),
    rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.profile-miner-card.is-muted {
  opacity: 0.72;
}

.profile-miner-main {
  display: grid;
  gap: 6px;
}

.profile-miner-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-miner-choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.profile-miner-choice-label {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}

.profile-miner-choice-coin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(125, 251, 212, 0.12);
  border: 1px solid rgba(125, 251, 212, 0.2);
}

.profile-miner-coin-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: contain;
  display: inline-block;
}

.profile-miner-choice-symbol {
  font-weight: 600;
  letter-spacing: 0.08em;
}

.profile-miner-label {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  text-align: right;
}

.profile-miner-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 5px;
  flex-wrap: wrap;
}

.profile-miner-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  visibility: hidden;
}

.profile-miner-pill {
  order: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px 3px;
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(125, 251, 212, 0.5);
  color: #e8fff9;
  line-height: 1;
}

.profile-miner-name {
  order: 1;
  flex: 1;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.profile-miner-meta {
  font-size: 0.92rem;
  opacity: 0.75;
  flex: 1;
  margin-top: 2px;
}

.profile-miner-footer {
  margin: 6px -16px 0;
  border-top: 1px solid rgba(125, 251, 212, 0.14);
}

.profile-miner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 0 0 2px 2px;
  border: none;
  border-top: 1px solid rgba(125, 251, 212, 0.26);
  color: #e8fff9;
  text-decoration: none;
   background: radial-gradient(
      circle at 20% 20%,
      rgba(125, 251, 212, 0.14),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(5, 26, 40, 0.9), rgba(2, 16, 26, 0.9));
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.profile-miner-link::after {
  content: "⭳";
  font-size: 1.05rem;
}

.profile-miner-link:hover {
  background: linear-gradient(
    180deg,
    rgba(9, 48, 70, 0.95),
    rgba(5, 26, 40, 0.98)
  );
  border-color: rgba(125, 251, 212, 0.4);
}

.profile-miner-link[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}

.profile-results-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 14px 18px;
  margin-bottom: 12px;
}

.profile-result-block:last-child {
  grid-column: 1 / -1;
}

.profile-result-label {
  display: block;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: 7px;
}

.profile-result-main {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.profile-result-sub {
  display: block;
  font-size: 0.8rem;
  opacity: 0.7;
}

.profile-results-disclaimer {
  margin: 4px 0 0;
  font-size: 0.80rem;
  opacity: 0.6;
}



@media (max-width: 900px) {
  .profile-top-row {
    grid-template-columns: 1fr;
  }

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

  .profile-inner {
    padding: 0 18px;
  }
}

@media (max-width: 720px) {
  .profile-form-grid {
    grid-template-columns: 1fr;
  }

  .profile-miner-card {
    padding: 15px 16px 0;
  }
}


.profile-select-shell {
  position: relative;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.32);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}


.profile-select-native {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}


.profile-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  border: none;
  background: transparent;
  padding: 9px 10px 9px 12px;
  color: var(--hero-text-color);
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
}

.profile-select-current {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.95;
}


.profile-select-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.profile-select-arrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  transform: rotate(-45deg);
  margin-top: -2px;
  transition:
    transform var(--transition-fast),
    margin-top var(--transition-fast);
}

.profile-select-shell.is-open .profile-select-arrow::before {
  transform: rotate(135deg);
  margin-top: 2px;
}

.profile-select-shell:focus-within {
  border-color: rgba(125, 251, 212, 0.75);
  box-shadow: 0 0 0 1px rgba(125, 251, 212, 0.24);
}


.profile-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: calc(100% + 4px);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(
    circle at top,
    rgba(125, 251, 212, 0.12),
    rgba(1, 5, 13, 0.98)
  );
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.65);
  max-height: 260px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  z-index: 40;
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

.profile-select-shell.is-open .profile-select-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.profile-select-option {
  width: 100%;
  border: none;
  background: transparent;
  padding: 7px 8px;
  text-align: left;
  color: var(--hero-text-color);
  font-size: 0.9rem;
  font-family: inherit;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.8;
}

.profile-select-option:hover {
  background: rgba(125, 251, 212, 0.08);
  opacity: 1;
}

.profile-select-option.is-active {
  background: rgba(125, 251, 212, 0.16);
  opacity: 1;
}

.profile-select-option:disabled {
  opacity: 0.45;
  cursor: default;
}








.profile-select-shell {
  position: relative;
  display: block;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.32);
  padding: 0;
}

.profile-select {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}


.profile-select-display {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  background: transparent;
  color: var(--hero-text-color);
  font-size: 0.9rem;
  padding: 9px 12px;
  cursor: pointer;
}

.profile-select-display:focus-visible {
  outline: none;
}

.profile-select-shell:focus-within {
  border-color: rgba(125, 251, 212, 0.75);
}

.profile-select-display-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-select-display-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.profile-select-label-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-select-display-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-select-display-chevron::before {
  content: "";
  width: 7px;
  height: 7px;
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  transform: rotate(-45deg);
  margin-top: -2px;
}

.profile-select-shell.is-open .profile-select-display-chevron::before {
  transform: rotate(135deg);
  margin-top: 2px;
}

.profile-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 4px);
  z-index: 20;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 13, 22, 0.98);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
  max-height: 260px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

.profile-select-shell.is-open .profile-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.profile-select-option {
  width: 100%;
  border: none;
  padding: 8px 12px;
  font-size: 0.88rem;
  text-align: left;
  background: transparent;
  color: var(--hero-text-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-select-option:hover,
.profile-select-option[aria-selected="true"] {
  background: rgba(125, 251, 212, 0.12);
}

.profile-select-option-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}



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

.profile-compact-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-compact-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.profile-compact-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}

.profile-compact-value {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 0.8rem;
  opacity: 0.85;
}

.profile-compact-unit {
  opacity: 0.7;
}




@media (max-width: 720px) {
  .profile-compact-inputs {
    grid-template-columns: 1fr;
  }
}





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

.profile-field--full {
  grid-column: 1 / -1;
}

@media (max-width: 800px) {
  .profile-form-grid {
    grid-template-columns: 1fr;
  }
}



.profile-select-shell {
  position: relative;
  display: block;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.32);
  padding: 0;
}

.profile-select {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.profile-select-native {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}


.profile-select-display {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  background: transparent;
  color: var(--hero-text-color);
  font-size: 1.13rem;
  padding: 13px 12px;
  cursor: pointer;
}

.profile-select-display:focus-visible {
  outline: none;
}

.profile-select-shell:focus-within {
  border-color: rgba(125, 251, 212, 0.75);
}

.profile-select-display-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-select-display-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.profile-select-label-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-select-display-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-select-display-chevron::before {
  content: "";
  width: 7px;
  height: 7px;
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  transform: rotate(-45deg);
  margin-top: -2px;
}

.profile-select-shell.is-open .profile-select-display-chevron::before {
  transform: rotate(135deg);
  margin-top: 2px;
}

.profile-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: calc(100% + 4px);
  z-index: 20;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 13, 22, 0.98);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
  max-height: 260px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

.profile-select-shell.is-open .profile-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.profile-select-option {
  width: 100%;
  border: none;
  padding: 8px 12px;
  font-size: 0.88rem;
  text-align: left;
  background: transparent;
  color: var(--hero-text-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-select-option:hover,
.profile-select-option[aria-selected="true"] {
  background: rgba(125, 251, 212, 0.12);
}

.profile-select-option-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}



.profile-field--metrics {
  margin-top: 10px;
}

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

.profile-metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.profile-metric-label {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.98;
  min-height: 1.4em;
}

.profile-metric .profile-input-shell {
  display: flex;
  align-items: center;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.32);
  padding-left: 8px;
  margin-bottom: 11px;
}

.profile-metric .profile-input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--hero-text-color);
  font-size: 0.95rem;
  padding: 16px 4px 16px 2px;
}

.profile-metric .profile-input:focus {
  outline: none;
}

.profile-metric .profile-input-unit {
  flex-shrink: 0;
  font-size: 0.98rem;
  padding: 0 8px;
  opacity: 0.8;
}



.profile-range {
  width: 100%;
  --range-fill: 0%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
      to right,
      rgba(125, 251, 212, 0.4) var(--range-fill),
      rgba(255, 255, 255, 0.12) var(--range-fill)
    ),
    rgba(255, 255, 255, 0.12);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}


.profile-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #7dfbd4;
  border: 1px solid rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 0 4px rgba(125, 251, 212, 0.2);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.profile-range:active::-webkit-slider-thumb,
.profile-range:focus-visible::-webkit-slider-thumb {
  transform: scale(1.05);
}


.profile-range::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
      to right,
      rgba(125, 251, 212, 0.4) var(--range-fill),
      rgba(255, 255, 255, 0.12) var(--range-fill)
    ),
    rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.profile-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #7dfbd4;
  border: 1px solid rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 0 4px rgba(125, 251, 212, 0.2);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.profile-range:active::-moz-range-thumb,
.profile-range:focus-visible::-moz-range-thumb {
  transform: scale(1.05);
}


@media (max-width: 720px) {
  .profile-metrics-grid {
    grid-template-columns: 1fr;
  }

  .profile-miner-card {
    flex-direction: column;
    align-items: flex-start;
  }
}









.downloads-section {
  padding: 85px 0 105px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(
      circle at top center,
      rgba(125, 251, 212, 0.08),
      transparent 60%
    ),
    #020b13;
}

.downloads-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
}

.downloads-header {
  max-width: 720px;
  margin-bottom: 20px;
}

.downloads-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  margin: 0 0 8px;
}

.downloads-title {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.25;
  margin: 0 0 8px;
  font-weight: 600;
}

.downloads-subtitle {
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.86;
  margin: 0;
}

.downloads-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
  margin-bottom: 6px;
}

.downloads-stats {
  font-size: 0.88rem;
  opacity: 0.78;
}

.downloads-legend {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.downloads-legend-pill {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.80rem;
  opacity: 0.85;
  white-space: nowrap;
}

.downloads-legend-pill.is-primary {
  border-color: rgba(125, 251, 212, 0.75);
}



.downloads-table {
  margin-top: 24px;
  border-radius: 6px;

  overflow: hidden;
}

.downloads-head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr)
                         minmax(0, 0.9fr)
                         minmax(0, 2.1fr)
                         minmax(0, 1.1fr);
  padding: 10px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0)
  );
}

.downloads-col {
  padding-right: 10px;
}

.downloads-col--actions {
  justify-self: end;
  text-align: right;
}

.downloads-body {
  display: flex;
  flex-direction: column;
}

.downloads-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr)
                         minmax(0, 0.9fr)
                         minmax(0, 2.1fr)
                         minmax(0, 1.1fr);
  gap: 0;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: flex-start;
  transition: background-color var(--transition-fast, 0.18s ease-out);
}

.downloads-row:hover {
  background: radial-gradient(
      circle at top left,
      rgba(125, 251, 212, 0.08),
      transparent 70%
    );
}

.downloads-cell {
  padding-right: 10px;
  font-size: 0.9rem;
}



.downloads-miner-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.downloads-miner-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.downloads-miner-name {
  font-weight: 700;
  font-size: 1.18rem;
}

.downloads-miner-meta {
  font-size: 0.84rem;
  opacity: 0.75;
}



.downloads-cell--hardware {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.downloads-hw-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0.9;
  white-space: nowrap;
}

.downloads-hw-pill--gpu {
  border-color: rgba(125, 251, 212, 0.75);
}

.downloads-hw-pill--cpu {
  border-color: rgba(216, 241, 255, 0.7);
}

.downloads-hw-pill--asic {
  border-color: rgba(255, 203, 112, 0.8);
}

.downloads-hw-pill--mixed {
  border-color: rgba(176, 196, 222, 0.8);
}



.downloads-coins-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.downloads-coin-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.downloads-coin-chip-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.2);
}

.downloads-coin-chip-label {
  letter-spacing: 0.1em;
}

.downloads-coin-chip--primary {
  border-color: rgba(125, 251, 212, 0.85);
  box-shadow: 0 0 0 1px rgba(125, 251, 212, 0.25);
}



.downloads-cell--actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.downloads-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(216, 241, 255, 0.7);
  background: rgba(0, 0, 0, 0.18);
  font-size: 1rem;
  text-decoration: none;
  color: #f5feff;
  transition:
    background-color var(--transition-fast, 0.18s ease-out),
    border-color var(--transition-fast, 0.18s ease-out),
    transform var(--transition-fast, 0.18s ease-out);
}

.downloads-download-btn:hover {
  background: rgba(125, 251, 212, 0.1);
  border-color: rgba(125, 251, 212, 0.9);
}

.downloads-download-btn[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}



.downloads-footnote {
  margin-top: 12px;
  font-size: 0.8rem;
  opacity: 0.7;
}



@media (max-width: 720px) {
  .downloads-section {
    padding: 52px 0 64px;
  }

  .downloads-inner {
    padding: 0 18px;
  }

  .downloads-table {
    border: none;
    background: transparent;
  }

  .downloads-head {
    display: none;
  }

  .downloads-row {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 10px;
  }

  .downloads-cell--actions {
    align-items: flex-start;
    margin-top: 10px;
  }

  .downloads-toolbar {
    align-items: flex-start;
  }
}












.faq-section {
  padding: 80px 0 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-inner {
  max-width: var(--content-max-width, 1120px);
  margin: 0 auto;
  padding: 0 var(--content-padding-x, 24px);
}

.faq-header {
  max-width: 720px;
}

.faq-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  margin: 0 0 6px;
}

.faq-title {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 8px;
}

.faq-subtitle {
  font-size: 0.93rem;
  line-height: 1.6;
  opacity: 0.86;
  margin: 0;
}





.faq-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 32px;

  align-items: stretch;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 12px;

}



.faq-accordion {
  flex: 1;
  border-radius: 2px;
  border: 1px solid rgba(216, 241, 255, 0.18);
  background: rgba(5, 14, 24, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 4px 10px 6px;


  display: flex;
  flex-direction: column;
}



.faq-column-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.faq-column-label--right {
  justify-content: flex-end;
}

.faq-column-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.85;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(216, 241, 255, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(4, 16, 26, 0.55);
}



.faq-accordion {
  border-radius: 7px;
  border: 1px solid rgba(216, 241, 255, 0.18);
  background: rgba(5, 14, 24, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 4px 10px 6px;
}



.faq-entry {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-entry:last-child {
  border-bottom: none;
}



.faq-entry-head {
  width: 100%;
  border: none;
  background: transparent;
  color: inherit;
  padding: 16px 5px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 12px;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-entry-question {
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 500;
  color: #e5f6ff;
}

.faq-entry-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid rgba(216, 241, 255, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition:
    background-color var(--transition-fast, 0.16s ease-out),
    border-color var(--transition-fast, 0.16s ease-out),
    transform var(--transition-fast, 0.16s ease-out);
}



.faq-entry-icon::before,
.faq-entry-icon::after {
  content: "";
  position: absolute;
  background: rgba(216, 241, 255, 0.9);
  border-radius: 999px;
  transition: transform var(--transition-fast, 0.18s ease-out),
    opacity var(--transition-fast, 0.18s ease-out);
}

.faq-entry-icon::before {
  width: 9px;
  height: 1px;
}

.faq-entry-icon::after {
  width: 1px;
  height: 9px;
}



.faq-entry.is-open .faq-entry-icon {
  background: rgba(132, 252, 214, 0.16);
  border-color: rgba(132, 252, 214, 0.9);
}

.faq-entry.is-open .faq-entry-icon::after {
  transform: scaleY(0);
  opacity: 0;
}



.faq-entry-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-3px);
  transition:
    max-height 0.24s ease-out,
    opacity 0.2s ease-out,
    transform 0.2s ease-out;
}

.faq-entry.is-open .faq-entry-body {
  opacity: 1;
  transform: translateY(0);
}

.faq-entry-body-inner {
  padding: 0 4px 10px;
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.92;
  color: #d7e7f3;
}

.faq-entry-body-inner p {
  margin: 0 0 6px;
}

.faq-entry-body-inner p:last-child {
  margin-bottom: 0;
}

.faq-entry-body-inner ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.faq-entry-body-inner li {
  margin-bottom: 3px;
}



.faq-entry-head:hover .faq-entry-question {
  color: #f1fcff;
}

.faq-entry-head:focus-visible {
  outline: 2px solid rgba(132, 252, 214, 0.9);
  outline-offset: 3px;
}



@media (max-width: 860px) {
  .faq-section {
    padding: 56px 0 72px;
  }

  .faq-inner {
    padding: 0 18px;
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 24px;
  }

  .faq-column-label--right {
    justify-content: flex-start;
  }

  .faq-accordion {
    padding: 4px 8px 6px;
  }
}

.faq-title-prefix {
  opacity: 0.70;
  font-weight: 400;
  margin-right: 0em;
}







.site-footer {
  padding: 68px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
      180deg,
      rgba(125, 251, 212, 0.06),
      transparent 35%
    ),
    #01070f;
}

.footer-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px 22px;
}

.footer-links-wrap--four {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links-group:first-child {
  padding-left: 0;
  border-left: none;
}

.footer-title {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.footer-title--miner {
  color: #7dfbd4;
  letter-spacing: 0.14em;
  position: relative;
}

.footer-title--miner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 28px;
  height: 2px;
  background: rgba(125, 251, 212, 0.6);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  margin: 0;
  margin-top: 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links a {
  color: #e9f6ff;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  opacity: 0.7;
  padding: 1px 0;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
}

.footer-link-miner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-miner-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  object-fit: cover;
  flex-shrink: 0;
}

.footer-miner-icon--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #e9f6ff;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.footer-meta-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
}

.footer-meta-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.footer-meta-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  text-align: right;
}

.footer-meta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-divider {
  opacity: 0.5;
}

.footer-meta-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-meta-legal a {
  color: #e9f6ff;
  text-decoration: none;
  opacity: 0.9;
}

.footer-meta-legal a:hover {
  opacity: 1;
}

@media (max-width: 720px) {
  .site-footer {
    padding: 56px 0 46px;
  }

  .footer-inner {
    padding: 0 18px;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links-group {
    padding-left: 0;
    border-left: none;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-meta-right {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .footer-links-wrap {
    grid-template-columns: 1fr;
  }
}





.standalone-layout {
  padding-top: 120px;
  padding-bottom: 24px;
}

.page-hero {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 30px var(--content-padding-x) 80px;
  text-align: left;
}

.page-kicker {
  margin: 0 0 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  opacity: 0.8;
}

.page-title {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  line-height: 1.15;
}

.page-lede {
  margin: 0 0 20px;
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.92;
}

.page-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.page-section {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.0)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 70px 0;
}

.page-section:first-of-type {
  border-top: none;
}

.page-section-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
}

.page-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.page-section-kicker {
  margin: 0 0 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0.75;
}

.page-section-title {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
}

.page-section-lede {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.88;
}

.page-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.page-grid--two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-card {
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.22);
}

.page-card--highlight {
  border-color: rgba(125, 251, 212, 0.45);
  background: rgba(125, 251, 212, 0.06);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(125, 251, 212, 0.08);
}

.page-card-title {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.page-card-text {
  margin: 0 0 12px;
  line-height: 1.65;
  opacity: 0.9;
}

.page-card-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  line-height: 1.6;
  opacity: 0.92;
}

.page-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 8, 17, 0.92);
  padding: 48px 0 60px;
}

.page-footer-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-x);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.page-footer-block {
  max-width: 680px;
}

.page-footer-kicker {
  margin: 0 0 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0.8;
}

.page-footer-title {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.page-footer-text {
  margin: 0 0 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.page-footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  opacity: 0.92;
}

.page-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-footer-links a {
  color: #e9f6ff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.page-footer-links a:hover {
  border-color: rgba(125, 251, 212, 0.7);
}

.page-outline {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.page-outline a {
  color: #e9f6ff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.2);
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.page-outline a:hover {
  border-color: rgba(125, 251, 212, 0.7);
  background: rgba(125, 251, 212, 0.1);
}

.page-section--banded {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 760px) {
  .standalone-layout {
    padding-top: 100px;
  }

  .page-hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .page-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-footer-links {
    width: 100%;
  }
}




.page-hero--bench {
  position: relative;
}

.bench-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 26px;
  align-items: start;
}

.bench-hero-points {
  margin: 0 0 18px;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  line-height: 1.65;
  opacity: 0.92;
}

.bench-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.bench-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e9f6ff;
  font-size: 0.9rem;
}

.bench-pill--outline {
  background: rgba(255, 255, 255, 0.04);
}

.bench-hero-panel {
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(2, 10, 18, 0.8), rgba(17, 39, 56, 0.88));
  border: 1px solid rgba(125, 251, 212, 0.2);
  box-shadow:
    0 14px 48px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.bench-hero-panel-head {
  margin-bottom: 14px;
}

.bench-panel-kicker {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  opacity: 0.75;
}

.bench-panel-title {
  margin: 0 0 6px;
  font-size: 1.26rem;
}

.bench-panel-meta {
  margin: 0;
  line-height: 1.55;
  opacity: 0.86;
}

.bench-hero-panel-rows {
  display: grid;
  gap: 12px;
}

.bench-hero-mini {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.bench-mini-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.bench-mini-name {
  font-weight: 600;
}

.bench-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.bench-chip--stable {
  color: #80ffd9;
  border-color: rgba(128, 255, 217, 0.25);
  background: rgba(128, 255, 217, 0.12);
}

.bench-chip--watch {
  color: #ffd27f;
  border-color: rgba(255, 210, 127, 0.25);
  background: rgba(255, 210, 127, 0.12);
}

.bench-chip--info {
  color: #9dc4ff;
  border-color: rgba(157, 196, 255, 0.25);
  background: rgba(157, 196, 255, 0.12);
}

.bench-mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 600;
}

.bench-mini-foot {
  margin: 6px 0 0;
  line-height: 1.55;
  opacity: 0.9;
}

.bench-panel-note {
  margin: 16px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.86;
}

.bench-hero-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.bench-stat-card {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 38px rgba(0, 0, 0, 0.25);
}

.bench-stat-label {
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  opacity: 0.75;
}

.bench-stat-number {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.bench-stat-text {
  margin: 0;
  line-height: 1.55;
  opacity: 0.88;
}

.page-section--contrast {
  background:
    radial-gradient(120% 140% at 20% 10%, rgba(125, 251, 212, 0.08), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.0));
  border-top-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bench-feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.bench-feature-grid--dense {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bench-feature-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.22);
}

.bench-feature-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.bench-feature-text {
  margin: 0 0 10px;
  line-height: 1.65;
  opacity: 0.9;
}

.bench-feature-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  line-height: 1.55;
  opacity: 0.9;
}

.benchmark-rig-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.benchmark-rig-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.benchmark-rig {
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.03), rgba(2, 12, 20, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.benchmark-rig-head {
  margin-bottom: 12px;
  display: grid;
  gap: 6px;
}

.benchmark-rig-title {
  margin: 0;
  font-size: 1.12rem;
}

.benchmark-rig-text {
  margin: 0;
  line-height: 1.5;
  opacity: 0.9;
}

.benchmark-rig-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 10px 0 4px;
}

.benchmark-rig-metric {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.benchmark-rig-label {
  display: block;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.benchmark-rig-value {
  display: block;
  font-weight: 700;
  margin-top: 4px;
}

.benchmark-rig-notes {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  line-height: 1.55;
  opacity: 0.9;
}

.bench-method-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.bench-method-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
}

.bench-method-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.bench-method-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  line-height: 1.55;
  opacity: 0.9;
}

.bench-cta-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bench-cta-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  display: grid;
  gap: 10px;
}

.bench-cta-card--outline {
  background: rgba(255, 255, 255, 0.02);
  border-style: dashed;
}

.bench-cta-title {
  margin: 0;
  font-size: 1.08rem;
}

.bench-cta-text {
  margin: 0;
  line-height: 1.6;
  opacity: 0.92;
}

.bench-cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0.9;
}

@media (max-width: 960px) {
  .bench-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .bench-hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .bench-mini-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
