:root {
  --page-max-width: 1150px;
  --page-side-padding: 24px;
  --header-offset: 0px;

  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-heading: "Sora", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco,
    Consolas, "Liberation Mono", "Courier New", monospace;

  --bg-body: #f5f6fa;
  --bg-surface: #ffffff;

  --border-subtle: #dde1ec;
  --border-strong: #c1c7d8;

  --text-primary: #15192e;
  --text-secondary: #5d6171;
  --text-muted: #77787c;

  --accent: rgb(92, 206, 176);
  --accent-on-dark: rgb(92, 206, 176);
  --accent-button: rgb(92, 206, 176);
  --accent-button-hover: rgb(78, 187, 161);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 10px;

  --transition-fast: 120ms ease-out;
}



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

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

html {
  scroll-padding-top: var(--header-offset);
}

body {
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(17px, calc(17px + (100vw - 360px) * 0.00217), 19px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(var(--page-max-width), 100% - 2 * var(--page-side-padding));
  margin-inline: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
}

:is(main, section)[id] {
  scroll-margin-top: var(--header-offset);
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;

  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  box-shadow: none;

  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    backdrop-filter var(--transition-fast),
    box-shadow var(--transition-fast);
}


.site-header.site-header--solid {
  background: rgba(245, 246, 250, 0.97);
  border-bottom-color: var(--border-subtle);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: 18px;
}



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

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name-main {
  font-family: var(--font-heading);
  font-size: clamp(20px, calc(20px + (100vw - 360px) * 0.0038), 23.5px);
  letter-spacing: -0.045em;
  font-weight: 700;
}

.brand-name-sub {
  font-family: var(--font-mono);
  font-size: clamp(12px, calc(12px + (100vw - 360px) * 0.0011), 13px);
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--text-muted);
  margin-top: 3px;
}

.brand-name-highlight {
  color: var(--accent);
  text-shadow: 0 6px 16px rgba(92, 206, 176, 0.16);
}



.main-nav {
  position: relative;
  flex: 0 0 auto;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}


.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;

  padding-block: 5px;
  padding-inline: 8px;


  font-size: clamp(15px, calc(15px + (100vw - 360px) * 0.00163), 16.5px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;

  color: var(--text-secondary);
  text-decoration: none;

  border-radius: 8px;
  background-image: linear-gradient(
    180deg,
    rgba(149, 199, 247, 0.00) 0%,
    rgba(149, 199, 247, 0.08) 62%,
    rgba(92, 206, 176, 0.30) 100%
  );
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 100%;

  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}


.nav-link:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 3px;
  bottom: 5px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(92, 206, 176, 0.03),
    rgba(92, 206, 176, 0.55)
  );
  opacity: 0.7;
}


.nav-link:hover {
  color: var(--text-primary);
  background-size: 100% 100%;
}


.nav-link--active,
.nav-link[aria-current="page"] {
  color: var(--text-primary);
  background-size: 100% 100%;
}


.site-header.site-header--solid .nav-link {
  color: var(--text-secondary);
}



.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}



.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

  padding: 8px 15px;
  border-radius: 2px;

  font-size: 16.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;

  background: var(--accent-button);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;

  border: 1px solid transparent;
  box-shadow: none;

  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.header-cta:hover {
  background: rgba(92, 206, 176, 0.9);
  border-color: rgba(92, 206, 176, 0.95);

}

.header-cta-secondary {
  background: rgba(92, 206, 176, 0.12);
  color: var(--text-secondary);
  border-color: rgba(92, 206, 176, 0.3);
  letter-spacing: 0.12em;
  font-size: 16px;
  padding: 8px 15px;
}

.header-cta-secondary:hover {
  background: rgba(92, 206, 176, 0.2);
  color: var(--text-primary);
  border-color: rgba(92, 206, 176, 0.45);
}

.header-cta-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
}

.header-cta-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke: #ffffff;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.14));
}

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



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

  .header-inner {
    gap: 16px;
    padding-block: 14px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name-main {
    font-size: 21px;
  }

  .brand-name-sub {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .header-actions {
    align-self: stretch;
    justify-content: flex-start;
    gap: 8px;
  }

  .header-cta {
    padding-inline: 20px;
  }
}
.brand-name-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--text-muted);
  margin-top: 3px;

  display: inline-block;
}

.brand-name-sub::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;

  border-radius: 999px;
  background: rgb(34, 197, 94);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.5);

  animation: brand-status-pulse 2.1s ease-in-out infinite;
}

@keyframes brand-status-pulse {
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.site-header.site-header--solid {
  background: #ffffff;
  border-bottom-color: transparent;
  backdrop-filter: blur(10px);
  box-shadow: none;
}





.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;

  border-radius: var(--radius-sm);
  padding: 11px 26px;

  border: 1px solid transparent;
  cursor: pointer;

  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}



.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-button);
  border-color: var(--accent-button);
  color: #ffffff;
}


.btn-primary--on-dark {
  background: var(--accent-button);
  color: #ffffff;
  border-color: var(--accent-button);
}

.btn-primary--on-dark:hover {
  background: var(--accent-button-hover);
  border-color: var(--accent-button-hover);
}



.hero-cta {
  font-size: 19px;
  padding: 14px 36px;
  border-radius: 4px 18px 4px 18px;
}



.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: #b8c1e9;
  font-size: 19px;
  padding: 14px 36px;
  border-radius: 18px 4px 18px 4px;
}

.btn-secondary:hover {
  border-color: var(--border-strong);
}



.btn-ghost {
  background: #ffffff;
  color: var(--text-secondary);
  border-color: var(--border-subtle);
}

.btn-ghost:hover {
  background: #ffffff;
  border-color: var(--accent);
  color: var(--text-primary);
}







.hero {
  position: relative;
  padding-block: 145px 85px;

  background-image:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.45),
      rgba(250, 250, 250, 0.15)
    ),
    url("/assets/gradient-texture.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



.hero-inner {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  padding-inline: 12px;
  z-index: 1;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;

  display: flex;
  justify-content: center;
  z-index: 0;
}


.hero-overlay-inner {
  width: min(1350px, 100% - 2 * var(--page-side-padding));
  height: 100%;

  background-image:
    url("/assets/hero-coin-accent.webp"),
    url("/assets/hero-tether-coin.webp");

  background-repeat: no-repeat, no-repeat;
  background-position: left bottom, center center;
  background-size:
    min(40px, 45vw) auto,
    min(730px, 55vw) auto;

  opacity: 0.1;
}



.hero-content {
  position: relative;
  text-align: center;
}


.hero-title {
  margin: 0 0 38px;
  font-size: clamp(32px, calc(32px + (100vw - 360px) * 0.0576), 85px);
  line-height: 1.02;
}


.hero-title-main {
  display: inline-block;
  font-weight: 800;
  text-shadow:
    -0.09em 0.07em 5px rgba(5, 8, 22, 0.10),
    -0.09em 0.07em 18px rgba(5, 8, 22, 0.16);
}


.hero-title-sub {
  display: inline-block;
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: -0.075em;
  padding-top: 3px;
}



.hero-accent {
  color: var(--accent);
}

.hero-release-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin: 0 0 0px;

  padding: 5px 14px;
  border-radius: 8px;

  font-family: var(--font-mono);
  font-size: clamp(12px, calc(12px + (100vw - 360px) * 0.00163), 13.5px);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid #fff;
}

.hero-release-label {
  opacity: 0.9;
}

.hero-release-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgb(32, 253, 194);
  opacity: 0.99;
}

.hero-release-value {
  color: #fff;
}





.hero-status-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  font-family: var(--font-mono);
  font-size: clamp(16px, calc(16px + (100vw - 360px) * 0.00652), 22px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0;
}

.hero-status-item,
.hero-status-dot {
  margin: 0 12px;
}

.hero-status-item {
  white-space: nowrap;
}



.hero-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  opacity: 0.9;
}



.hero-divider {
  width: 290px;
  height: 2px;
  margin: 14px auto 17px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(148, 163, 184, 0.9),
    transparent
  );
  opacity: 0.7;
}



.hero-lead {
  font-size: clamp(18px, calc(18px + (100vw - 360px) * 0.00761), 25px);
  color: var(--text-secondary);
  max-width: 740px;
  margin: 20px auto 30px;
}

.hero-platforms {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 6px;
  color: var(--text-muted);
  font-size: clamp(16px, calc(16px + (100vw - 360px) * 0.00217), 18px);
}

.hero-platforms-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: clamp(13px, calc(13px + (100vw - 360px) * 0.00109), 14px);
  color: var(--text-primary);
}

.hero-platforms-list {
  font-weight: 600;
  color: var(--text-secondary);
}



.hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}



.section-focused {
  position: relative;
}


.section-focused-bg {
  background: #f8f8fb;
  padding-block: 75px;
}


.focused-shell {
  display: flex;
  justify-content: center;
}

.focused-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: 700px;


  display: flex;
  align-items: center;

  border-radius: var(--radius-lg);
  overflow: hidden;

  background-color: #070921;
  background-image: url("/assets/overview-bg.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  /*
  box-shadow: 18px 20px 40px rgba(3, 7, 18, 0.55);
  */
}

.focused-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.focused-heading {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 36px 50px 0;
  color: #f9fafb;
}



.focused-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3, 7, 18, 0.74),
    rgba(3, 7, 18, 0.72),
    rgba(3, 7, 18, 0.25),
    transparent
  );
  pointer-events: none;
}



.focused-content {
  position: relative;
  z-index: 1;

  max-width: 580px;
  padding: 16px 50px 40px;
  text-align: left;
  color: #f9fafb;
}



.focused-title {
  color: #f9fafb;
  margin: 0;
  letter-spacing: -0.04em;
  font-size: clamp(24px, calc(24px + (100vw - 360px) * 0.025), 47px);
  line-height: 1.16;
}



.focused-text {
  margin: 0 0 26px;
  font-size: clamp(18px, calc(18px + (100vw - 360px) * 0.00652), 24px);
  color: rgba(226, 232, 240, 0.94);
}

.focused-accent {
  color: var(--accent-on-dark);
}



.focused-tags {
  display: flex;
  justify-content: flex-start;
}

.focused-tag {
  font-family: var(--font-mono);
  font-size: clamp(12px, calc(12px + (100vw - 360px) * 0.00652), 18px);
  text-transform: uppercase;
  letter-spacing: 0.16em;

  padding: 15px 28px;
  border-radius: 2px;


  width: clamp(260px, 70%, 420px);

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: #020617;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.45);
}
@media (max-width: 640px) {
  .focused-tag {
    width: 100%;
    max-width: 320px;
  }
}


.focused-divider {
  display: flex;
  align-items: center;
  gap: 10px;

  width: 100%;
  margin: 10px 0 20px;
}

.focused-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(248, 250, 252, 0.85);
}

.focused-divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.9);
  background: transparent;
}

.focused-divider-dl {
  display: flex;
  align-items: center;
  gap: 10px;

  width: 100%;
  margin: 5px 0 0px;
}

.focused-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(248, 250, 252, 0.85);
}

.focused-divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.9);
  background: transparent;
}




.section-placeholder {
  min-height: 120px;
}



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

  .header-inner {
    gap: 16px;
  }

  .hero {
    padding-block: 110px 96px;
  }

  .hero-title-main {
    text-shadow:
      -0.08em 0.1em 0 rgba(5, 8, 22, 0.12),
      -0.08em 0.1em 14px rgba(5, 8, 22, 0.18);
  }

  .hero-status-inline {
    letter-spacing: 0.16em;
  }

  .hero-status-item,
  .hero-status-dot {
    margin: 0 10px;
  }

  .hero-divider {
    width: 130px;
    margin: 10px auto 22px;
  }


  .section-focused-bg {
    padding-block: 72px;
  }

  .focused-inner {
    max-width: 100%;
    min-height: 0;
  }

  .focused-heading {
    padding: 28px 26px 0;
  }

  .focused-content {
    padding: 14px 26px 28px;
    max-width: 100%;
  }

   .focused-inner {
    max-width: 100%;
    min-height: 0;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
  }

  .header-actions {
    align-self: stretch;
    justify-content: flex-start;
    gap: 8px;
  }

  .hero-title-main {
    text-shadow:
      -0.07em 0.09em 0 rgba(5, 8, 22, 0.12),
      -0.07em 0.09em 10px rgba(5, 8, 22, 0.18);
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
  }

  .hero-status-inline {
    letter-spacing: 0.14em;
  }

  .hero-status-item,
  .hero-status-dot {
    margin: 0 8px;
  }

  .hero-divider {
    width: 110px;
    margin: 8px auto 18px;
  }


  .section-focused-bg {
    padding-block: 56px;
  }

  .focused-heading {
    padding: 22px 20px 0;
  }

  .focused-content {
    padding: 12px 20px 24px;
  }

  .focused-tags {
    gap: 8px;
  }

  .focused-tag {
    letter-spacing: 0.14em;
  }
}






.section-electrum {
  position: relative;
    background: #ffffff;
  padding-block: 40px;
  overflow: hidden;
}


.section-electrum::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 260px;

  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.98) 0,
      rgba(241, 245, 249, 0.96) 40%,
      rgba(199, 227, 254, 0.52) 100%
    );

  opacity: 0.96;
  pointer-events: none;
  z-index: 0;
}



.electrum-layout {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  gap: 34px;

  max-width: 1000px;
  margin-inline: auto;
}



.electrum-logo-wrap {
  flex-shrink: 0;
}

.electrum-logo {
  display: block;
  height: 54px;
  width: auto;
}



.electrum-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.electrum-heading {
  margin: 0;
  font-size: clamp(26px, calc(26px + (100vw - 360px) * 0.01848), 43px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}



.electrum-heading-break {
  display: inline;
}



.electrum-heading-accent {
  position: relative;
  display: inline-block;
}

.electrum-sub {
  margin: 0;
  font-size: clamp(18px, calc(18px + (100vw - 360px) * 0.00435), 22px);
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 560px;
}



@media (max-width: 960px) {
  .section-electrum {
    padding-block: 72px;
  }

  .section-electrum::before {
    height: 230px;
    width: 140%;
  }

  .electrum-layout {
    gap: 26px;
    padding-inline: 22px;
  }

  .electrum-logo {
    height: 46px;
  }

  .electrum-sub {
    max-width: 520px;
  }


  .electrum-heading-break {
    display: inline;
  }
}

@media (max-width: 640px) {
  .section-electrum {
    padding-block: 56px;
  }

  .section-electrum::before {
    height: 220px;
    width: 160%;
  }

  .electrum-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-inline: 18px;
  }

  .electrum-logo {
    height: 38px;
  }

  .electrum-heading-break {
    display: block;
  }

  .electrum-sub {
    max-width: 100%;
  }
}













.section-features {
  position: relative;
}

.section-features-bg {
  background: #f8f8fb;
  padding-block: 100px 100px;
}



.features-grid {
  max-width: 1140px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 28px;
}



.feature {
  position: relative;
  padding: 0 0 0 20px;
}



.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(92, 206, 176, 0.03),
    rgba(92, 206, 176, 0.55)
  );
}



.feature-head {
  margin-bottom: 25px;
}



.feature-title {
  margin: 0;
  font-size: clamp(22px, calc(22px + (100vw - 360px) * 0.02826), 48px);
  line-height: 1.18;
  letter-spacing: -0.06em;
}



.feature-text {
  margin: 10px 0 0;
  font-size: clamp(17px, calc(17px + (100vw - 360px) * 0.0087), 25px);
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: var(--text-secondary);
}



@media (max-width: 960px) {
  .section-features-bg {
    padding-block: 64px 60px;
  }

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

  .feature {
    padding-left: 16px;
  }

  .feature-text {
    line-height: 1.6;
  }
}

@media (max-width: 640px) {
  .section-features-bg {
    padding-block: 56px 56px;
  }

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

  .feature {
    padding-left: 14px;
  }

}

@media (max-width: 960px) {
  .section-features-bg {
    padding-block: 64px 60px;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 24px;


    padding: 24px 20px 26px;
    border-radius: 18px;
    box-shadow: 0 20px 54px rgba(15, 23, 42, 0.08);
  }

  .feature {
    padding-left: 16px;
  }

  .feature-text {
    line-height: 1.6;
  }
}






.section-download {
  position: relative;
  padding-block: 90px 110px;
  background: #e1f2fb;
}



.download-frame {
  position: relative;
  width: 100%;
  max-width: 1140px;
  min-height: 680px;

  margin-inline: auto;
  border-radius: 10px;
  overflow: hidden;

  background-color: #020617;

  box-shadow: 22px 15px 30px rgba(15, 23, 42, 0.23);

  display: flex;
  align-items: stretch;
}



.download-left {
  flex: 0 0 44%;
  background: #95c7f7;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px 20px;
}

.download-left-inner {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}



.download-left-label {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(22px, calc(22px + (100vw - 360px) * 0.0163), 37px);
  margin-top: -10px;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #ffffff;
}



.download-left-panel {
  border-radius: 0px;
  background: #e1f2fb;
  padding: 0px;
}

.download-os-list {
  display: flex;
  flex-direction: column;
}




.download-left-panel {
  position: relative;
  border-radius: 8px;
  padding: 0px;
  overflow: hidden;
}


.download-left-panel::before {
  content: "";
  position: absolute;
  inset: 0;

  /*
  background: url("/assets/gradient-texture.webp") center / cover no-repeat;
  */
  opacity: 0.70;
  mix-blend-mode: multiply;

  pointer-events: none;
  z-index: 0;
}


.download-os-list {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
}





.download-os {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 25px 25px;
  text-decoration: none;

  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 0px solid rgba(226, 232, 240, 0.95);

  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.download-os:last-child {
  border-bottom: none;
}

.download-os:hover {
  background: linear-gradient(
    to right,
    rgba(92, 206, 176, 0.10),
    rgba(92, 206, 176, 0.02)
  );
}




.download-os-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.download-os-icon-shell {
  width: 90px;
  height: 70px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: 3px solid rgba(92, 206, 176, 0.7);
}

.download-os-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}



.download-os-texts {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.download-os-name {
  font-size: clamp(19px, calc(19px + (100vw - 360px) * 0.00978), 28px);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.download-os-meta {
  font-size: clamp(13px, calc(13px + (100vw - 360px) * 0.00326), 16px);
  color: var(--text-secondary);
}



.download-os-cta {
  font-size: clamp(12px, calc(12px + (100vw - 360px) * 0.00652), 18px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
}


.download-os-list {
  display: flex;
  flex-direction: column;
}


.download-os {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  width: 100%;
  padding: 30px 25px;

  text-decoration: none;
  color: var(--text-primary);
  background: transparent;

  border-top: 1px solid rgba(226, 232, 240, 0.95);
}


.download-os + .download-os {
  border-top: 2px solid rgba(127, 179, 253, 0.35);
}



.download-left-links {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: clamp(10px, calc(10px + (100vw - 360px) * 0.00543), 15px);
  line-height: 1.8;
  text-transform: none;
  letter-spacing: 0.04em;
  color: rgba(15, 23, 42, 0.8);

  display: block;
}


.download-link {
  position: relative;
  text-decoration: none;
  color: inherit;
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(148, 163, 184, 1);

  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.download-link:hover {
  color: var(--text-primary);
  border-bottom-color: var(--accent);
  transform: translateY(-0.5px);
}


.download-link:hover {
  color: #020617;
  border-bottom-color: rgba(15, 23, 42, 0.55);
}










.download-right {
  flex: 0 0 56%;


  background-image:
    linear-gradient(
      to bottom,
    rgba(3, 7, 18, 0.85),
    rgba(3, 7, 18, 0.25) 55%,
      rgba(3, 7, 18, 0.15) 68%,
      rgba(3, 7, 18, 0.05) 100%
    ),
    url("/assets/download-section-bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  padding: 40px 46px;
  position: relative;
}


.download-right::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;

  width: 35px;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.65),
    rgba(15, 23, 42, 0.0)
  );
  pointer-events: none;
}

.download-right::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background-image: url("/assets/download-coin-overlay.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: min(720px, 70vw) auto;

  opacity: 0.20;
}



.download-right-inner {
  width: 100%;
  max-width: 480px;
  color: #f9fafb;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 30px;
  z-index: 1;
}



.download-title {
  margin: 0;
  font-size: clamp(28px, calc(28px + (100vw - 360px) * 0.0402), 65px);
  line-height: 1.16;
  letter-spacing: -0.06em;
  text-shadow:
    0 16px 40px rgba(15, 23, 42, 0.9),
    0 0 1px rgba(15, 23, 42, 0.85);
}

.download-text {
  margin: 0;
  font-size: clamp(18px, calc(18px + (100vw - 360px) * 0.01087), 28px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(226, 232, 240, 0.99);
}

.download-release-pill {
  margin-top: auto;
  align-self: center;
  margin-bottom: 6px;
}





@media (max-width: 960px) {
  .section-download {
    padding-block: 80px 96px;
  }

  .download-frame {
    flex-direction: column;
    min-height: 0;
  }

  .download-left,
  .download-right {
    flex: 0 0 auto;
    padding: 32px 26px;
  }

  .download-left-inner {
    max-width: 100%;
  }

  .download-left-panel {
    padding: 8px 10px;
  }

  .download-os {
    padding: 10px 2px;
  }

  .download-text {
    line-height: 1.7;
  }
}

@media (max-width: 640px) {
  .section-download {
    padding-block: 64px 80px;
  }

  .download-left,
  .download-right {
    padding: 24px 18px;
  }

  .download-left-inner {
    gap: 14px;
  }

  .download-os-main {
    gap: 10px;
  }

  .download-os {
    padding: 10px 0;
  }

  .download-text {
    line-height: 1.6;
  }

  .download-left-links {
    letter-spacing: 0.14em;
  }
}














.section-faq {
  position: relative;
}

.section-faq-bg {
  position: relative;
  background: #f8f8fb;
  padding-block: 70px 104px;
}



.faq-main {
  position: relative;
  z-index: 1;

  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  column-gap: 0px;

  align-items: stretch;
}



.faq-left {
  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.98) 0,
      rgba(241, 245, 249, 0.96) 40%,
      rgba(199, 227, 254, 0.52) 100%
    );
  border-radius: 0;
  padding: 26px 30px 28px 30px;


  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-answer {
  max-width: 640px;
}



.faq-heading {
  max-width: 1040px;
  margin: 0 auto 45px;
  text-align: center;
}

.faq-heading-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, calc(32px + (100vw - 360px) * 0.025), 55px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.08em;
}




.faq-answer-question {
  margin: 0 0 14px;
  font-size: clamp(24px, calc(24px + (100vw - 360px) * 0.01848), 41px);
  line-height: 1.32;
  letter-spacing: -0.06em;
}

.faq-answer-body {
  font-size: clamp(18px, calc(18px + (100vw - 360px) * 0.00652), 24px);
  line-height: 1.55;
  color: var(--text-secondary);
}

.faq-answer-body p {
  margin: 0 0 10px;
}

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



.faq-right {
  position: relative;
  padding: 45px 20px 45px 25px;

  display: flex;
  flex-direction: column;


  background-image:
    linear-gradient(
      to right,
      rgba(245, 246, 250, 0.90),
      rgba(245, 246, 250, 0.90),
      rgba(245, 246, 250, 0.90),
      rgba(245, 246, 250, 0.90)
    ),
    url("/assets/electrum-tether.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: center;
  background-size: 100% 100%, 445px auto;
}



.faq-list {
  max-height: 480px;
  min-height: 320px;
  overflow-y: auto;

  padding-right: 14px;

  display: flex;
  flex-direction: column;
  gap: 4px;


  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.96) rgba(226, 232, 240, 0.95);
}



.faq-list::-webkit-scrollbar {
  width: 9px;
}

.faq-list::-webkit-scrollbar-track {
  background: rgba(226, 232, 240, 0.95);
  border-radius: 999px;
}

.faq-list::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.96);
  border-radius: 999px;
  border: 2px solid rgba(226, 232, 240, 0.95);
}

.faq-list::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}



.faq-item {
  position: relative;
}

.faq-template {
  display: none;
}



.faq-question {
  width: 100%;
  padding: 15px 0;
  border: none;
  background: transparent;
  cursor: pointer;

  display: block;
  text-align: left;

  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    transform var(--transition-fast);
}



.faq-question-text {
  display: block;
  font-size: clamp(19px, calc(19px + (100vw - 360px) * 0.00978), 28px);
  line-height: 1.30;
  letter-spacing: -0.075em;
  color: var(--text-secondary);
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}




.faq-question:hover .faq-question-text {
  color: var(--text-primary);
}



.faq-item.is-active .faq-question-text {
  color: var(--accent);
}


.faq-links {
  max-width: 1040px;
  margin: 26px auto 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-family: var(--font-mono);
  font-size: clamp(11px, calc(11px + (100vw - 360px) * 0.00109), 12px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}


.faq-links-label {
  display: none;
}

.faq-links-sep {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
}



.faq-link {
  position: relative;
  padding-bottom: 2px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  color: var(--text-secondary);
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.faq-link:hover {
  color: var(--text-primary);
  border-bottom-color: rgba(148, 163, 184, 0.9);
  transform: translateY(-0.5px);
}


.faq-links-dot {
  display: none;
}



@media (max-width: 960px) {
  .section-faq-bg {
    padding-block: 76px 88px;
  }

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

  .faq-right {
    margin-top: 4px;
    background-position: center;
    background-size: 100% 100%, 320px auto;
  }

  .faq-list {
    max-height: 380px;
    min-height: 260px;
  }

  .faq-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .section-faq-bg {
    padding-block: 60px 74px;
  }

  .faq-left {
    padding: 20px 20px 22px 20px;
    border-radius: 10px;
  }

  .faq-right {
    background-image: none;
    padding: 0;
  }

  .faq-list {
    max-height: 320px;
    min-height: 0;
    padding-inline: 2px;
  }

  .faq-links {
    letter-spacing: 0.14em;
  }
}















.section-community {
  position: relative;
}

.section-community-bg {

  background: #95c7f7;
  padding-block: 72px 80px;
}


.community-shell {
  display: flex;
  justify-content: center;
}


.community-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: 320px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: var(--radius-lg);
  overflow: hidden;

  background-color: #070921;
  background-image: url("/assets/community-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: 0 12px 30px rgba(3, 7, 18, 0.40);
}


.community-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3, 7, 18, 0.85),
    rgba(3, 7, 18, 0.65),
    rgba(3, 7, 18, 0.25),
    rgba(3, 7, 18, 0.1)
  );
  pointer-events: none;
}


.community-content {
  position: relative;
  z-index: 1;

  max-width: 820px;
  margin-inline: auto;
  padding: 30px 40px 34px;

  text-align: center;
  color: #f9fafb;
}


.community-title {
  margin: 0 0 11px;
  font-family: var(--font-heading);
  font-size: clamp(26px, calc(26px + (100vw - 360px) * 0.02826), 52px);
  line-height: 1.08;
  letter-spacing: -0.06em;
  white-space: nowrap;
}


.community-divider {
  display: flex;
  align-items: center;
  gap: 10px;

  width: 100%;
  max-width: 460px;
  margin: 10px auto 18px;
}

.community-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(248, 250, 252, 0.85);
}

.community-divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.9);
  background: transparent;
}


.community-text {
  margin: 0;
  font-size: clamp(16px, calc(16px + (100vw - 360px) * 0.0087), 24px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: rgba(226, 232, 240, 0.96);
}


.community-cta-wrap {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}


.community-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 38px;
  border-radius: 2px;

  font-family: var(--font-mono);
  font-size: clamp(17px, calc(17px + (100vw - 360px) * 0.00109), 18px);
  text-transform: uppercase;
  letter-spacing: 0.20em;

  background: #ffffff;
  color: #020617;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);

  text-decoration: none;
  cursor: pointer;

  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.community-cta:hover {
  background: var(--accent-button);
  border-color: var(--accent-button);
  color: #ffffff;
  box-shadow: 0 10px 50px rgba(15, 23, 42, 0.35);
}



@media (max-width: 960px) {
  .section-community-bg {
    padding-block: 60px 72px;
  }

  .community-inner {
    max-width: 100%;
    min-height: 0;
  }

  .community-content {
    padding: 26px 26px 30px;
    max-width: 100%;
  }

  .community-title {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .section-community-bg {
    padding-block: 52px 64px;
  }

  .community-content {
    padding: 22px 20px 26px;
  }

  .community-cta {
    width: 100%;
    max-width: 320px;
    padding: 13px 24px;
  }
}












.site-footer {
  background: #040d2a;
  color: rgba(226, 232, 240, 0.96);
  padding-block: 82px 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}


.footer-main {
  display: flex;
  align-items: left;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 20px;
}


.footer-brand-block {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  max-width: 330px;
}

.footer-brand-mark {
  width: 106px;
  height: 106px;
  border-radius: 22px;
  background: radial-gradient(circle at 30% 20%, #111827, #020617 70%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7);
}

.footer-brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, calc(24px + (100vw - 360px) * 0.01087), 34px);
  letter-spacing: -0.07em;
}

.footer-brand-title-accent {
  color: var(--accent-on-dark);
}

.footer-brand-sub {
  font-size: clamp(15px, calc(15px + (100vw - 360px) * 0.0087), 23px);
  line-height: 1.6;
  color: rgba(148, 163, 184, 0.96);
}


.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  min-width: 0;
}


.footer-nav-block,
.footer-network-panel {
  position: relative;
  padding-left: 22px;
}


.footer-nav-block::before,
.footer-network-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(92, 206, 176, 0.02),
    rgba(92, 206, 176, 0.55),
    rgba(92, 206, 176, 0.02)
  );
  opacity: 0.85;
}


.footer-nav-label,
.footer-network-label {
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: clamp(14px, calc(14px + (100vw - 360px) * 0.00217), 16px);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(148, 163, 184, 0.98);
}


.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.footer-nav-link {
  font-size: clamp(19px, calc(19px + (100vw - 360px) * 0.00435), 23px);
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: rgba(226, 232, 240, 0.96);
  text-decoration: none;
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

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


.footer-network-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 22px;
  border-radius: 999px;

  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.65);
  margin-bottom: 14px;
}

.footer-network-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgb(34, 197, 94);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.5);


  animation: brand-status-pulse 2.1s ease-in-out infinite;
}

.footer-network-text {
  font-family: var(--font-mono);
  font-size: clamp(13px, calc(13px + (100vw - 360px) * 0.00109), 14px);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(226, 232, 240, 0.96);
}

.footer-network-note {
  margin: 0;
  font-size: clamp(16px, calc(16px + (100vw - 360px) * 0.00326), 19px);
  line-height: 1.6;
  color: rgba(148, 163, 184, 0.96);
  max-width: 280px;
}


.footer-bottom {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.85);

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  font-size: clamp(16px, calc(16px + (100vw - 360px) * 0.00109), 17px);
  line-height: 1.7;
  color: rgba(148, 163, 184, 0.9);
}

.footer-meta {
  white-space: nowrap;
}



@media (max-width: 960px) {
  .footer-main {
    flex-direction: column;
    gap: 44px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
  }


  .footer-network-panel {
    grid-column: span 2;
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-block: 56px 30px;
  }

  .footer-brand-block {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .footer-brand-mark {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }

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

  .footer-network-panel {
    grid-column: auto;
    max-width: 100%;
  }

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

  .footer-meta {
    white-space: normal;
  }
}


.footer-brand-block {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 360px;


  align-self: center;
}


.footer-brand-icon-shell {
  width: 190px;
  height: 190px;
  border-radius: 26px;


  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-brand-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.footer-brand-text,
.footer-brand-title,
.footer-brand-sub,
.footer-brand-sub-icon {
  display: none;
}


@media (max-width: 640px) {
  .footer-brand-block {
    justify-content: flex-start;
    max-width: 100%;


    align-self: flex-start;
  }

  .footer-brand-icon-shell {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
  }
}


/* Docs page */
.docs-page {
  background: radial-gradient(65% 65% at 20% 20%, rgba(92, 206, 176, 0.08), transparent),
    radial-gradient(50% 55% at 80% 15%, rgba(44, 107, 204, 0.06), transparent),
    var(--bg-body);
}

.docs-hero {
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
  text-align: center;
}

.docs-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(92, 206, 176, 0.08),
      rgba(92, 206, 176, 0.04),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.75),
      rgba(255, 255, 255, 0.95),
      rgba(231, 242, 255, 0.65)
    );
  opacity: 0.75;
  pointer-events: none;
}

.docs-hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.docs-hero-copy {
  display: grid;
  gap: 14px;
  justify-items: center;
  max-width: 880px;
}

.docs-crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: 15px;
  color: var(--text-secondary);
  width: fit-content;
  box-shadow: 0 12px 28px rgba(17, 23, 42, 0.06);
}

.docs-hero-title {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.05;
  margin: 0;
}

.docs-hero-accent {
  color: var(--accent);
}

.docs-hero-lead {
  margin: 0;
  color: var(--text-secondary);
  max-width: 720px;
}

.docs-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.docs-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text-secondary);
  font-size: 15px;
}

.docs-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.docs-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1px;
}

.docs-ghost-link:hover {
  border-bottom-color: var(--accent);
  color: var(--text-primary);
}

.docs-hero-release {
  background: rgba(92, 206, 176, 0.18);
  border: 1px solid rgba(92, 206, 176, 0.55);
  color: #0f2d23;
  padding-inline: 14px;
  justify-self: center;
}

.docs-hero-release .hero-release-label,
.docs-hero-release .hero-release-value {
  color: #0f2d23;
}

.docs-hero-release .hero-release-dot {
  background: #0f8c62;
}

.docs-nav {
  position: relative;
  padding: 60px 0;
}

.docs-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(45% 55% at 25% 40%, rgba(92, 206, 176, 0.09), transparent),
    radial-gradient(45% 55% at 80% 60%, rgba(27, 81, 172, 0.07), transparent);
  pointer-events: none;
  z-index: 0;
}

.docs-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
}

.docs-nav-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background:
    linear-gradient(135deg, rgba(92, 206, 176, 0.06), rgba(255, 255, 255, 0.92)),
    linear-gradient(0deg, #ffffff, #ffffff);
  box-shadow: 0 14px 40px rgba(20, 30, 70, 0.08);
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.docs-nav-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(92, 206, 176, 0.6), rgba(35, 102, 204, 0.5));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  transition: opacity var(--transition-fast);
}

.docs-nav-card:hover {
  transform: none;
  border-color: var(--accent);
  box-shadow: 0 18px 50px rgba(20, 30, 70, 0.12);
}

.docs-nav-card:hover::before {
  opacity: 0.7;
}

.docs-nav-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--text-muted);
}

.docs-nav-title {
  margin: 0;
  font-size: 20px;
}

.docs-nav-text {
  margin: 0;
  color: var(--text-secondary);
  font-size: 17px;
}

.docs-nav-arrow {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-primary);
  background: rgba(92, 206, 176, 0.12);
  border: 1px solid rgba(92, 206, 176, 0.45);
  justify-self: flex-end;
}

.docs-section {
  position: relative;
  padding: 80px 0;
}

.docs-section--highlight {
  background: linear-gradient(140deg, #f6fbf8 0%, #eef2ff 100%);
  border-block: 1px solid rgba(193, 199, 216, 0.35);
}

.docs-section--surface {
  background: #ffffff;
  border-block: 1px solid var(--border-subtle);
}

.docs-section--wrap {
  background: linear-gradient(180deg, #fdfefe 0%, #f2f6ff 100%);
}

.docs-section-head {
  max-width: 760px;
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.docs-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  color: var(--text-muted);
}

.docs-section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.docs-section-lead {
  margin: 0;
  color: var(--text-secondary);
}

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

.docs-step-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 18px 18px 10px;
  box-shadow: 0 16px 42px rgba(20, 30, 70, 0.08);
  display: grid;
  gap: 12px;
}

.docs-step-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.docs-step-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: #f7f9ff;
  font-weight: 600;
  font-size: 14px;
}

.docs-step-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-secondary);
  display: grid;
  gap: 8px;
}

.docs-verify-block {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  border-radius: 14px;
  border: 1px dashed var(--border-subtle);
  background: linear-gradient(135deg, #ffffff, #f4f9ff);
}

.docs-verify-title {
  margin: 0 0 6px;
}

.docs-verify-lead {
  margin: 0;
  color: var(--text-secondary);
}

.docs-verify-code {
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 15px;
  overflow: auto;
  border: 1px solid #1e293b;
}

.docs-verify-code pre {
  margin: 0;
  white-space: pre-wrap;
}

.docs-verify-note {
  margin: 12px 0 0;
  color: #b6c2d9;
}

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

.docs-column {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 18px 18px 12px;
  box-shadow: 0 12px 36px rgba(17, 23, 42, 0.08);
}

.docs-column-title {
  margin: 0 0 10px;
  font-size: 22px;
}

.docs-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-secondary);
  display: grid;
  gap: 8px;
}

.docs-callout {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px dashed var(--border-subtle);
  background: #f7faff;
  color: var(--text-secondary);
}

.docs-callout--accent {
  background: rgba(92, 206, 176, 0.12);
  border-color: rgba(92, 206, 176, 0.45);
  color: #0f241d;
}

.docs-inline-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.docs-inline-pill {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: #f7f9fc;
  font-size: 14px;
  color: var(--text-secondary);
}

.docs-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.docs-check {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-items: start;
  box-shadow: 0 12px 30px rgba(17, 23, 42, 0.06);
}

.docs-check-icon {
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

.docs-check-title {
  margin: 0;
  font-weight: 700;
}

.docs-check-text {
  grid-column: 2;
  margin: 0;
  color: var(--text-secondary);
}

.docs-flow {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.docs-flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: linear-gradient(120deg, #ffffff, #f8fbff);
  box-shadow: 0 12px 36px rgba(20, 30, 70, 0.06);
}

.docs-flow-index {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #0f172a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.docs-flow-title {
  margin: 0 0 6px;
  font-weight: 700;
}

.docs-flow-text {
  margin: 0;
  color: var(--text-secondary);
}

.docs-inline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.docs-inline-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 28px rgba(20, 30, 70, 0.06);
}

.docs-inline-title {
  margin: 0 0 8px;
  font-size: 18px;
}

.docs-inline-text {
  margin: 0;
  color: var(--text-secondary);
}

.docs-play-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.docs-play-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px;
  display: grid;
  gap: 6px;
  box-shadow: 0 14px 40px rgba(17, 23, 42, 0.08);
}

.docs-play-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--text-muted);
}

.docs-play-title {
  margin: 0;
  font-size: 20px;
}

.docs-play-text {
  margin: 0;
  color: var(--text-secondary);
}

.docs-release-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.docs-release-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 14px 10px;
  box-shadow: 0 12px 36px rgba(20, 30, 70, 0.08);
}

.docs-release-title {
  margin: 0 0 8px;
  font-size: 20px;
}

.docs-release-text {
  margin: 0 0 10px;
  color: var(--text-secondary);
}

.docs-release-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-secondary);
  display: grid;
  gap: 6px;
}

.docs-release-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

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

  .docs-verify-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .docs-hero {
    padding-top: 120px;
  }

  .docs-hero-panel,
  .docs-nav-card {
    padding: 16px;
  }

  .docs-flow {
    margin-bottom: 18px;
  }

  .docs-section {
    padding: 90px 0;
  }
}
