@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("../fonts/sora-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #0c0c0d;
  --bg-deep: #080809;
  --surface: #121214;
  --surface-raised: #171719;
  --surface-warm: #18130f;
  --ink: #f3efe9;
  --muted: #999791;
  --muted-strong: #bbb7af;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.17);
  --orange: #ff7a18;
  --orange-bright: #ff8c2c;
  --orange-deep: #bf4e09;
  --champagne: #ddc8a5;
  --champagne-soft: #b9aa91;
  --green: #69d4a6;
  --container: 1240px;
  --header-height: 82px;
  --display: "Sora", system-ui, sans-serif;
  --body: "Instrument Sans", system-ui, sans-serif;
  min-width: 320px;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 84% 12%,
      rgba(255, 122, 24, 0.08),
      transparent 27rem
    ),
    var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  content: "";
  pointer-events: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
}

::selection {
  background: var(--orange);
  color: #140a03;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.05em;
  height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--bg);
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(20px) saturate(130%);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand {
  justify-self: start;
}

.brand img {
  width: 222px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.main-nav a,
.site-footer nav a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.site-footer nav a:hover {
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 10px;
  min-height: 43px;
  padding: 0 17px;
  border: 1px solid rgba(255, 122, 24, 0.54);
  border-radius: 5px;
  background: rgba(255, 122, 24, 0.08);
  color: #ff9a50;
  font-size: 0.9rem;
  font-weight: 650;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.header-cta:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #130903;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle .icon {
  width: 22px;
  height: 22px;
  margin: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(410px, 0.84fr) minmax(560px, 1.16fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  min-height: calc(100svh - var(--header-height));
  padding-block: 76px 94px;
  overflow: clip;
}

.hero::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 1px;
  background: var(--orange);
  content: "";
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 27px;
  color: var(--champagne);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.accent-line {
  width: 32px;
  height: 1px;
  background: var(--orange);
}

.hero h1,
.section-heading h2,
.security-intro h2,
.faq-intro h2,
.closing-section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(4.35rem, 6.7vw, 6.45rem);
}

.hero h1 span,
.closing-section h2 span {
  color: var(--orange);
}

.hero-description {
  max-width: 550px;
  margin: 30px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.35vw, 1.19rem);
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: #190b02;
  box-shadow: 0 12px 35px rgba(255, 104, 0, 0.19);
}

.button-primary:hover {
  background: var(--orange-bright);
  box-shadow: 0 14px 38px rgba(255, 104, 0, 0.27);
}

.button-light {
  min-height: 48px;
  background: var(--ink);
  color: #171411;
}

.button-light:hover {
  background: #fff;
}

.text-link,
.source-link,
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 650;
}

.text-link .icon,
.source-link .icon,
.project-link .icon {
  transition: transform 180ms ease;
}

.text-link:hover .icon,
.source-link:hover .icon,
.project-card:hover .project-link .icon {
  transform: translateX(4px);
}

.hero-actions .text-link .icon {
  color: var(--orange);
}

.hero-actions .text-link:hover .icon {
  transform: translateY(3px);
}

.hero-availability {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 43px;
  color: var(--muted);
  font-size: 0.83rem;
}

.hero-availability a {
  margin-left: 5px;
  color: var(--champagne);
}

.status-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(105, 212, 166, 0.1);
}

.hero-product {
  position: relative;
  min-height: 650px;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(221, 200, 165, 0.1);
  border-radius: 50%;
  transform: rotate(-19deg);
}

.orbit-one {
  inset: 20px -170px 23px -72px;
}

.orbit-two {
  inset: 107px -82px 96px 20px;
}

.orbit-point {
  position: absolute;
  z-index: -1;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 22px rgba(255, 122, 24, 0.8);
}

.orbit-point-one {
  top: 101px;
  right: 11px;
}

.orbit-point-two {
  right: 85px;
  bottom: 87px;
  background: var(--champagne);
}

.product-coordinate {
  position: absolute;
  top: 10px;
  right: 3px;
  color: #5d5a54;
  font-family: monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.wallet-window {
  position: absolute;
  top: 60px;
  left: 0;
  width: min(100%, 616px);
  overflow: hidden;
  border: 1px solid rgba(221, 200, 165, 0.22);
  border-radius: 13px;
  background: #101011;
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.48),
    0 0 0 7px rgba(255, 255, 255, 0.012);
  transform: perspective(1300px) rotateY(-2.5deg) rotateX(1deg);
  transform-origin: left center;
}

.wallet-window::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    116deg,
    rgba(255, 255, 255, 0.04),
    transparent 27%
  );
  content: "";
  pointer-events: none;
}

.wallet-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 19px;
  border-bottom: 1px solid var(--line);
  background: #0c0c0d;
}

.wallet-wordmark,
.wallet-network {
  display: flex;
  align-items: center;
}

.wallet-wordmark {
  gap: 9px;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
}

.wallet-network {
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.7rem;
}

.wallet-layout {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 444px;
}

.wallet-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding: 19px 0;
  border-right: 1px solid var(--line);
  color: #74726e;
}

.wallet-rail span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
}

.wallet-rail .rail-active {
  border-left: 2px solid var(--orange);
  background: rgba(255, 122, 24, 0.08);
  color: var(--orange);
}

.wallet-rail .rail-bottom {
  margin-top: auto;
}

.wallet-content {
  padding: 25px 27px 20px;
}

.account-line {
  display: flex;
  justify-content: space-between;
  color: var(--muted-strong);
  font-size: 0.72rem;
}

.account-address {
  color: var(--champagne-soft);
  font-family: monospace;
}

.balance-label {
  margin-top: 23px;
  color: var(--muted);
  font-size: 0.67rem;
}

.wallet-balance {
  margin-top: 2px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 550;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.wallet-balance span {
  color: #8c8983;
}

.balance-currency {
  color: var(--champagne);
  font-size: 0.78rem;
}

.balance-currency span {
  color: var(--muted);
}

.wallet-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 21px;
}

.wallet-actions span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 39px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--muted-strong);
  font-size: 0.74rem;
}

.wallet-actions .wallet-action-primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #170a02;
  font-weight: 700;
}

.preview-tabs {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  border-bottom: 1px solid var(--line);
}

.preview-tabs button {
  position: relative;
  padding: 0 0 10px;
  border: 0;
  background: none;
  color: #7e7b75;
  font-size: 0.69rem;
  cursor: pointer;
}

.preview-tabs button[aria-selected="true"] {
  color: var(--ink);
}

.preview-tabs button[aria-selected="true"]::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
}

.preview-panels {
  min-height: 112px;
}

.asset-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  font-size: 0.72rem;
}

.asset-icon {
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  place-items: center;
  color: var(--champagne);
}

.asset-icon img {
  border-radius: 50%;
}

.asset-icon .icon {
  width: 15px;
  height: 15px;
}

.quanta-symbol {
  border-color: rgba(255, 122, 24, 0.35);
  background: rgba(255, 122, 24, 0.1);
  color: var(--orange);
}

.quanta-symbol .qrl-logo {
  width: 16px;
  height: 17px;
}

.asset-name,
.asset-amount {
  display: flex;
  flex-direction: column;
}

.asset-name small,
.asset-amount small {
  color: #74716c;
  font-size: 0.61rem;
}

.asset-amount {
  align-items: flex-end;
  font-family: monospace;
}

.received,
.session-status {
  color: var(--green);
}

.session-status {
  font-size: 0.65rem;
}

.wallet-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-top: 1px solid var(--line);
  background: #0b0b0c;
  color: #75726d;
  font-size: 0.64rem;
}

.wallet-bottom .icon {
  color: var(--champagne-soft);
}

.tiny-dots {
  margin-left: auto;
  letter-spacing: 0.3em;
}

.signature-note {
  position: absolute;
  right: -8px;
  bottom: 51px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  width: 365px;
  padding: 14px 15px;
  border: 1px solid rgba(221, 200, 165, 0.3);
  border-radius: 8px;
  background: rgba(22, 20, 18, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
}

.signature-icon {
  display: grid;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 122, 24, 0.32);
  background: rgba(255, 122, 24, 0.09);
  color: var(--orange);
  place-items: center;
}

.signature-note div {
  display: flex;
  flex-direction: column;
}

.signature-note strong {
  font-size: 0.72rem;
}

.signature-note div span {
  color: var(--muted);
  font-size: 0.64rem;
}

.signature-code {
  color: var(--champagne);
  font-family: monospace;
  font-size: 0.64rem;
}

.preview-caption {
  position: absolute;
  bottom: 5px;
  left: 4px;
  margin: 0;
  color: #6f6c66;
  font-family: monospace;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
}

.preview-caption span {
  margin-left: 13px;
  color: #514f4b;
  letter-spacing: 0.03em;
  text-transform: none;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles > div {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 107px;
  padding: 0 clamp(20px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.principles > div:first-child {
  padding-left: 0;
}

.principles > div:last-child {
  border-right: 0;
}

.principles .icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.principles span {
  display: flex;
  flex-direction: column;
  font-weight: 650;
}

.principles small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
}

.section-space {
  padding-block: 150px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.68fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 66px;
}

.section-heading .eyebrow,
.security-intro .eyebrow,
.faq-intro .eyebrow {
  margin-bottom: 24px;
}

.section-number {
  color: var(--orange);
  font-family: monospace;
}

.section-heading h2,
.security-intro h2,
.faq-intro h2 {
  font-size: clamp(3.15rem, 5.1vw, 5rem);
}

.text-muted {
  color: #706e69;
}

.text-champagne {
  color: var(--champagne);
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 7px;
  color: var(--muted-strong);
  font-size: 1.06rem;
  line-height: 1.65;
}

.platform-picker {
  display: grid;
  grid-template-columns: 315px 1fr;
  min-height: 630px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: var(--surface);
  overflow: hidden;
}

.platform-options {
  padding: 15px;
  border-right: 1px solid var(--line);
  background: #0f0f10;
}

.platform-option {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 104px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #84817b;
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.platform-option > .icon:first-child {
  width: 24px;
  height: 24px;
}

.platform-option span {
  display: flex;
  flex-direction: column;
  font-weight: 650;
}

.platform-option small {
  margin-top: 4px;
  color: #686661;
  font-size: 0.78rem;
  font-weight: 400;
}

.platform-option .option-arrow {
  opacity: 0;
  color: var(--orange);
  transform: translateX(-6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.platform-option[aria-selected="true"] {
  background: linear-gradient(90deg, rgba(255, 122, 24, 0.1), transparent);
  color: var(--ink);
}

.platform-option[aria-selected="true"] > .icon:first-child {
  color: var(--orange);
}

.platform-option[aria-selected="true"] .option-arrow {
  opacity: 1;
  transform: translateX(0);
}

.platform-details {
  position: relative;
  min-width: 0;
}

.platform-panel {
  min-height: 630px;
}

.platform-visual {
  position: relative;
  display: grid;
  height: 395px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 50% 65%,
      rgba(255, 122, 24, 0.16),
      transparent 16rem
    ),
    linear-gradient(135deg, #191512, #101011 60%);
  place-items: center;
}

.platform-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.mini-browser,
.mini-desktop,
.extension-browser {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(221, 200, 165, 0.22);
  background: #0e0e0f;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.mini-browser {
  width: min(74%, 500px);
  border-radius: 9px;
  transform: rotate(-2deg);
}

.mini-browser-bar,
.extension-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 35px;
  padding: 0 11px;
  border-bottom: 1px solid var(--line);
  color: #77746f;
  font-size: 0.57rem;
}

.mini-browser-bar > span:nth-child(2),
.extension-toolbar > span:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mini-browser-bar > .icon {
  justify-self: end;
}

.window-dots {
  display: flex;
  gap: 4px;
}

.window-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4b4945;
}

.mini-browser-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 23px 30px 27px;
}

.mini-browser-content img {
  width: 150px;
  margin-bottom: 18px;
}

.mini-browser-content strong,
.desktop-app-content strong {
  font-family: var(--display);
  font-size: 1.25rem;
}

.mini-browser-content > span,
.desktop-app-content > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
}

.mini-create,
.mini-import {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  margin-top: 20px;
  border-radius: 3px;
  font-size: 0.65rem;
}

.mini-create {
  gap: 7px;
  background: var(--orange);
  color: #170a02;
  font-weight: 700;
}

.mini-import {
  justify-content: space-between;
  margin-top: 7px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  color: var(--muted-strong);
}

.platform-panel-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
  padding: 33px 39px 36px;
}

.platform-meta {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--orange);
  font-family: monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.platform-panel-copy h3 {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.platform-panel-copy > p:not(.platform-meta) {
  margin: 2px 0 0;
  color: var(--muted-strong);
  line-height: 1.6;
}

.platform-links {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}

.source-link {
  color: var(--muted-strong);
  font-size: 0.86rem;
}

.desktop-visual {
  padding-top: 28px;
}

.mini-desktop {
  width: min(67%, 440px);
  border-radius: 7px;
  transform: perspective(900px) rotateY(4deg);
}

.mini-desktop-top {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
  color: #918e88;
  font-size: 0.56rem;
}

.desktop-controls {
  margin-left: auto;
}

.desktop-app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 38px 35px 30px;
}

.desktop-app-content > .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  color: var(--orange);
}

.desktop-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 37px;
  margin-top: 24px;
  border: 1px solid var(--line-strong);
  color: var(--champagne);
  font-size: 0.65rem;
}

.monitor-stand {
  position: absolute;
  z-index: 0;
  bottom: 35px;
  width: 115px;
  height: 35px;
  border-bottom: 4px solid #2c2925;
  background: #1b1917;
  clip-path: polygon(
    40% 0,
    60% 0,
    70% 85%,
    100% 85%,
    100% 100%,
    0 100%,
    0 85%,
    30% 85%
  );
}

.mobile-visual {
  padding-top: 27px;
}

.mini-phone {
  position: relative;
  z-index: 1;
  align-self: end;
  width: 214px;
  height: 355px;
  padding: 26px 14px 14px;
  border: 5px solid #292724;
  border-bottom: 0;
  border-radius: 27px 27px 0 0;
  background: #0d0d0e;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.phone-camera {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 43px;
  height: 10px;
  border-radius: 8px;
  background: #030304;
  transform: translateX(-50%);
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.62rem;
  font-weight: 700;
}

.phone-header .icon {
  margin-left: auto;
  color: #77746f;
}

.phone-label {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.53rem;
}

.phone-balance {
  display: block;
  font-family: var(--display);
  font-size: 1.62rem;
  letter-spacing: -0.05em;
}

.phone-balance span {
  color: #77746f;
}

.phone-currency {
  color: var(--champagne);
  font-size: 0.58rem;
}

.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 16px;
}

.phone-actions span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 29px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--muted-strong);
  font-size: 0.53rem;
}

.phone-actions span:first-child {
  border-color: var(--orange);
  background: var(--orange);
  color: #160a02;
}

.phone-asset {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 21px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.56rem;
}

.phone-asset .quanta-symbol {
  display: grid;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  place-items: center;
}

.phone-asset > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.phone-asset small {
  color: var(--muted);
}

.phone-asset b {
  font-family: monospace;
  font-weight: 400;
}

.phone-nav {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  display: flex;
  justify-content: space-around;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  color: #77746f;
}

.phone-nav .icon:first-child {
  color: var(--orange);
}

.mobile-note {
  position: absolute;
  z-index: 2;
  right: 11%;
  bottom: 39px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 13px;
  border: 1px solid rgba(221, 200, 165, 0.25);
  background: rgba(21, 19, 17, 0.95);
  color: var(--champagne);
  font-size: 0.62rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.extension-browser {
  width: min(79%, 540px);
  height: 292px;
  border-radius: 8px;
  transform: rotate(1.5deg);
}

.extension-toolbar {
  grid-template-columns: 1fr 2fr auto auto;
  gap: 10px;
}

.extension-toolbar > .icon {
  justify-self: end;
}

.extension-lines {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 52%;
  padding: 44px 20px;
}

.extension-lines i {
  height: 7px;
  background: #232225;
}

.extension-lines i:nth-child(2) {
  width: 78%;
}

.extension-lines i:nth-child(3) {
  width: 58%;
}

.extension-popup {
  position: absolute;
  top: 45px;
  right: 15px;
  display: flex;
  flex-direction: column;
  width: 218px;
  min-height: 230px;
  padding: 17px;
  border: 1px solid rgba(255, 122, 24, 0.25);
  border-radius: 7px;
  background: #131214;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.extension-popup > img {
  width: 128px;
  margin-bottom: 20px;
}

.extension-popup > span {
  color: var(--muted);
  font-size: 0.55rem;
}

.extension-popup > strong {
  margin-top: 3px;
  font-family: var(--display);
  font-size: 1.25rem;
}

.extension-popup > strong small {
  color: var(--champagne);
  font-size: 0.55rem;
}

.extension-app {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.6rem;
}

.extension-app .icon {
  color: var(--green);
}

.extension-popup .mini-create {
  margin-top: 13px;
}

.platform-preview-note {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 15px;
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.58rem;
}

.ecosystem-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #09090a;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: var(--surface);
  transition:
    border-color 200ms ease,
    transform 200ms ease;
}

.project-card:hover {
  border-color: rgba(255, 122, 24, 0.44);
  transform: translateY(-4px);
}

.project-topline {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 20px 23px;
  color: var(--champagne-soft);
  font-family: monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.swap-art,
.pool-art {
  position: relative;
  display: grid;
  height: 340px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  place-items: center;
}

.swap-art {
  background:
    radial-gradient(
      circle at 25% 50%,
      rgba(221, 200, 165, 0.08),
      transparent 11rem
    ),
    radial-gradient(
      circle at 75% 50%,
      rgba(255, 122, 24, 0.11),
      transparent 12rem
    ),
    #111112;
}

.swap-path {
  position: absolute;
  width: 58%;
  height: 1px;
  background: linear-gradient(90deg, var(--champagne), var(--orange));
  opacity: 0.35;
}

.coin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #161617;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.42);
}

.coin small {
  margin-top: 7px;
  color: var(--muted);
  font-family: monospace;
  font-size: 0.56rem;
  letter-spacing: 0.13em;
}

.coin-eth {
  left: 17%;
  color: var(--champagne);
}

.coin-eth .icon {
  width: 34px;
  height: 34px;
}

.coin-qrl {
  right: 17%;
  border-color: rgba(255, 122, 24, 0.3);
  color: var(--orange);
}

.coin-qrl .qrl-logo {
  width: 32px;
  height: 34px;
}

.swap-arrows {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #87837d;
}

.swap-arrows .icon:last-child {
  transform: rotate(180deg);
}

.art-caption {
  position: absolute;
  bottom: 20px;
  color: #625f59;
  font-family: monospace;
  font-size: 0.56rem;
  letter-spacing: 0.15em;
}

.pool-art {
  background:
    radial-gradient(
      circle at center,
      rgba(255, 122, 24, 0.1),
      transparent 16rem
    ),
    #111112;
  perspective: 800px;
}

.pool-ring {
  position: absolute;
  width: 280px;
  height: 92px;
  border: 1px solid rgba(255, 122, 24, 0.23);
  border-radius: 50%;
  transform: rotateX(63deg);
}

.ring-back {
  top: 86px;
}

.ring-middle {
  top: 125px;
  width: 338px;
  border-color: rgba(221, 200, 165, 0.12);
}

.ring-front {
  top: 165px;
  width: 390px;
  border-color: rgba(255, 122, 24, 0.12);
}

.pool-token {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-top: -28px;
}

.pool-token img {
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.pool-token span {
  color: var(--champagne);
  font-family: monospace;
  font-size: 0.68rem;
}

.project-copy {
  padding: 32px 34px 36px;
}

.project-copy h3 {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.project-copy h3 img {
  border-radius: 50%;
}

.project-copy p {
  max-width: 490px;
  margin: 13px 0 23px;
  color: var(--muted-strong);
  line-height: 1.62;
}

.project-link {
  color: var(--champagne);
  font-size: 0.87rem;
}

.project-compact {
  min-height: 310px;
}

.compact-project-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  min-height: 310px;
}

.compact-project-body .project-copy {
  padding-top: 63px;
}

.explorer-art {
  position: relative;
  height: 220px;
}

.explorer-block {
  position: absolute;
  width: 106px;
  height: 106px;
  border: 1px solid rgba(221, 200, 165, 0.22);
  background: #171718;
  transform: rotate(45deg) skew(-7deg, -7deg);
}

.block-one {
  top: 35px;
  right: 42px;
  opacity: 0.32;
}

.block-two {
  top: 55px;
  right: 62px;
  opacity: 0.58;
}

.block-three {
  top: 75px;
  right: 82px;
  display: grid;
  border-color: rgba(255, 122, 24, 0.37);
  background: #1a1511;
  color: var(--orange);
  place-items: center;
}

.block-three .icon {
  width: 28px;
  height: 28px;
  transform: skew(7deg, 7deg) rotate(-45deg);
}

.connect-art {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #5c5954;
  font-family: monospace;
  font-size: 5rem;
}

.connect-art .icon {
  width: 52px;
  height: 52px;
  color: var(--orange);
}

.ecosystem-footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 31px;
  color: var(--muted);
  font-size: 0.83rem;
}

.ecosystem-footnote > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.security-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 8vw, 130px);
}

.security-intro {
  position: sticky;
  top: calc(var(--header-height) + 55px);
  align-self: start;
}

.security-intro > p:not(.eyebrow) {
  max-width: 450px;
  margin: 28px 0 27px;
  color: var(--muted-strong);
  line-height: 1.65;
}

.security-principles {
  border-top: 1px solid var(--line-strong);
}

.security-principles article {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 28px;
  min-height: 225px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line-strong);
}

.security-icon {
  display: grid;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 122, 24, 0.26);
  background: rgba(255, 122, 24, 0.055);
  color: var(--orange);
  place-items: center;
}

.security-icon .icon {
  width: 24px;
  height: 24px;
}

.detail-label {
  color: var(--champagne-soft);
  font-family: monospace;
  font-size: 0.61rem;
  letter-spacing: 0.12em;
}

.security-principles h3 {
  margin: 11px 0 13px;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.security-principles p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.65;
}

.testnet-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px 35px;
  border-top: 1px solid rgba(255, 122, 24, 0.36);
  border-bottom: 1px solid rgba(255, 122, 24, 0.36);
  background: linear-gradient(
    90deg,
    rgba(255, 122, 24, 0.075),
    transparent 70%
  );
}

.testnet-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 122, 24, 0.3);
  color: var(--orange);
  place-items: center;
}

.qrl-logo {
  display: block;
  width: 28px;
  height: 30px;
  background: currentColor;
  mask: url("../img/qrl.svg") center / contain no-repeat;
}

.testnet-note h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.16rem;
}

.testnet-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 9vw, 145px);
}

.faq-intro > p:not(.eyebrow) {
  margin: 27px 0 11px;
  color: var(--muted);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 89px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary .icon {
  flex: 0 0 auto;
  color: var(--orange);
  transition: transform 180ms ease;
}

.faq-list details[open] summary .icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 650px;
  margin: -5px 54px 29px 0;
  color: var(--muted-strong);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--champagne);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.closing-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 455px;
  padding-top: 122px;
  padding-bottom: 107px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.closing-section h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(4rem, 7vw, 7.3rem);
}

.closing-action {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 8px;
}

.closing-action > span {
  color: var(--muted);
  font-size: 0.77rem;
}

.closing-emblem {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 67%;
  opacity: 0.045;
  transform: translate(-50%, -50%) rotate(9deg);
}

.site-footer {
  padding-block: 66px 32px;
  border-top: 1px solid var(--line-strong);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 60px;
}

.footer-brand p {
  margin: 25px 0 28px;
  color: var(--muted-strong);
  line-height: 1.6;
}

.footer-brand > span {
  color: var(--muted);
  font-size: 0.79rem;
}

.footer-brand > span a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--champagne);
}

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

.footer-label {
  margin-bottom: 11px;
  color: var(--champagne-soft);
  font-family: monospace;
  font-size: 0.59rem;
  letter-spacing: 0.13em;
}

.site-footer nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: var(--muted);
  font-size: 0.87rem;
}

.site-footer nav .icon,
.footer-brand .icon {
  width: 12px;
  height: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 67px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #6e6b65;
  font-size: 0.72rem;
}

.footer-bottom div {
  display: flex;
  gap: 27px;
}

.footer-bottom a:hover {
  color: var(--muted-strong);
}

.js [data-tab-panel] {
  display: none;
}

.js [data-tab-panel].is-active {
  display: block;
  animation: panel-in 320ms ease both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 7vw, 5.3rem);
  }

  .wallet-window {
    transform: none;
  }

  .signature-note {
    right: 0;
  }

  .platform-picker {
    grid-template-columns: 270px 1fr;
  }

  .platform-option {
    padding-inline: 12px;
  }

  .project-copy {
    padding-inline: 27px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 11px;
  }

  .main-nav {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 22px;
    border-bottom: 1px solid var(--line-strong);
    background: #0b0b0c;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-product {
    width: min(100%, 700px);
    margin: 20px auto 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading > p {
    margin-left: 0;
  }

  .platform-picker {
    grid-template-columns: 1fr;
  }

  .platform-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(145px, 1fr));
    overflow-x: auto;
    padding: 9px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .platform-option {
    grid-template-columns: auto 1fr;
    min-height: 83px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .platform-option .option-arrow,
  .platform-option small {
    display: none;
  }

  .security-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .security-intro {
    position: static;
  }

  .security-principles {
    margin-top: 10px;
  }

  .footer-main {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header .brand img {
    width: 173px;
  }

  .header-cta {
    display: none;
  }

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

  .hero {
    min-height: auto;
    padding-block: 72px 78px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-availability {
    font-size: 0.76rem;
  }

  .hero-product {
    min-height: 530px;
    margin-top: 8px;
  }

  .wallet-window {
    top: 40px;
  }

  .wallet-layout {
    grid-template-columns: 43px 1fr;
    min-height: 375px;
  }

  .wallet-rail span {
    width: 30px;
  }

  .wallet-content {
    padding: 20px 17px 15px;
  }

  .wallet-balance {
    font-size: 2.55rem;
  }

  .preview-tabs {
    gap: 15px;
  }

  .preview-tabs button {
    font-size: 0.62rem;
  }

  .signature-note {
    right: -4px;
    bottom: 24px;
    width: min(92%, 350px);
  }

  .preview-caption,
  .product-coordinate,
  .orbit-point-two {
    display: none;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principles > div,
  .principles > div:first-child {
    min-height: 83px;
    padding: 0 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles > div:last-child {
    border-bottom: 0;
  }

  .section-space {
    padding-block: 100px;
  }

  .section-heading h2,
  .security-intro h2,
  .faq-intro h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .desktop-break {
    display: none;
  }

  .platform-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }

  .platform-option {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
    padding: 11px 8px;
    text-align: center;
  }

  .platform-option:nth-child(2n) {
    border-right: 0;
  }

  .platform-option:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .platform-panel,
  .platform-picker {
    min-height: auto;
  }

  .platform-visual {
    height: 320px;
  }

  .mini-browser,
  .extension-browser {
    width: 89%;
  }

  .mini-browser-content {
    padding-inline: 21px;
  }

  .platform-panel-copy {
    grid-template-columns: 1fr;
    padding: 30px 23px 34px;
  }

  .platform-panel-copy > p:not(.platform-meta) {
    margin-top: 4px;
  }

  .platform-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .mobile-note {
    right: 2%;
  }

  .extension-popup {
    width: 190px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: auto;
  }

  .swap-art,
  .pool-art {
    height: 300px;
  }

  .coin {
    width: 90px;
    height: 90px;
  }

  .coin-eth {
    left: 10%;
  }

  .coin-qrl {
    right: 10%;
  }

  .project-copy {
    padding: 28px 23px 32px;
  }

  .compact-project-body {
    grid-template-columns: 1fr;
    min-height: 345px;
  }

  .compact-project-body .project-copy {
    padding-top: 62px;
  }

  .explorer-art,
  .connect-art {
    position: absolute;
    right: -15px;
    bottom: 12px;
    width: 175px;
    opacity: 0.22;
    pointer-events: none;
  }

  .ecosystem-footnote,
  .testnet-note,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .testnet-note {
    display: flex;
  }

  .security-principles article {
    grid-template-columns: 52px 1fr;
    gap: 19px;
  }

  .security-icon {
    width: 48px;
    height: 48px;
  }

  .closing-section {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 490px;
    gap: 40px;
  }

  .closing-section h2 {
    font-size: clamp(3.9rem, 17vw, 6rem);
  }

  .closing-action {
    align-items: flex-start;
    margin: 0;
  }

  .closing-emblem {
    top: 72%;
    left: 85%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 50px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom div {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .hero-product {
    min-height: 500px;
  }

  .wallet-topbar {
    padding-inline: 12px;
  }

  .wallet-wordmark {
    font-size: 0.78rem;
  }

  .wallet-wordmark img {
    width: 23px;
  }

  .wallet-network {
    font-size: 0.59rem;
  }

  .account-address {
    display: none;
  }

  .preview-tabs {
    gap: 10px;
  }

  .preview-tabs button {
    font-size: 0.57rem;
  }

  .asset-row {
    grid-template-columns: 34px 1fr auto;
  }

  .signature-note {
    grid-template-columns: auto 1fr;
  }

  .signature-code {
    display: none;
  }

  .platform-preview-note {
    display: none;
  }

  .mini-desktop {
    width: 85%;
  }

  .extension-popup {
    right: 8px;
    width: 177px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
