:root {
  color-scheme: dark;
  --bg: #080909;
  --bg-deep: #040505;
  --panel: #121414;
  --panel-soft: #191b1b;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f4f4f1;
  --muted: #9c9f9d;
  --dim: #676b68;
  --mint: #25c4a5;
  --amber: #f5a524;
  --gold: #d7b66c;
  --white-soft: rgba(255, 255, 255, 0.88);
  --shadow: rgba(0, 0, 0, 0.56);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 64% 42%, rgba(255, 255, 255, 0.07), transparent 36rem),
    linear-gradient(180deg, #020303 0%, #050606 34rem, #121313 52rem, #171918 100svh, #101111);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

body.wallet-open {
  overflow: hidden;
}

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

svg {
  display: block;
  fill: currentColor;
}

.brand-lockup strong {
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, 0.46fr) minmax(620px, 0.54fr);
  column-gap: 36px;
  align-items: center;
  min-height: 100svh;
  padding: 42px max(28px, calc((100vw - 1320px) / 2)) 48px;
  background:
    radial-gradient(ellipse at 64% 48%, rgba(255, 255, 255, 0.085), transparent 34rem),
    linear-gradient(180deg, rgba(2, 3, 3, 0.96) 0%, rgba(6, 7, 7, 0.98) 42%, rgba(18, 19, 19, 0.98) 78%, rgba(23, 25, 24, 0.98) 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 50% 48%, black, transparent 78%);
  opacity: 0.28;
}

.hero-copy {
  width: min(590px, 100%);
  max-width: 590px;
  justify-self: center;
  text-align: center;
}

.js-enabled .hero-copy {
  opacity: 0;
  transform: translate3d(-28px, 24px, 0);
  filter: blur(10px);
  transition:
    opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1) 120ms,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1) 120ms,
    filter 1100ms cubic-bezier(0.16, 1, 0.3, 1) 120ms;
}

.is-ready .hero-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.app-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 23px;
  background: linear-gradient(180deg, #363939, #181a1a);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 60px rgba(0, 0, 0, 0.42);
}

.app-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 42%);
}

.app-icon span {
  position: relative;
  width: 62px;
  height: 44px;
}

.app-icon span::before,
.app-icon span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.app-icon span::before {
  top: 5px;
  width: 55px;
  height: 15px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #8e9391, #5c6260);
  box-shadow: 0 9px 0 rgba(222, 226, 224, 0.2);
}

.app-icon span::after {
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 31px solid transparent;
  border-right: 31px solid transparent;
  border-top: 31px solid #737977;
}

.brand-lockup {
  margin: 0;
  color: #eeeeec;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1;
  font-weight: 500;
}

.tagline {
  margin: 8px 0 20px;
  color: #c7c9c7;
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  line-height: 1.2;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: none;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(2.85rem, 4.35vw, 4.25rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lede {
  max-width: 570px;
  margin: 20px auto 0;
  color: #aaaead;
  font-size: clamp(0.98rem, 1.28vw, 1.18rem);
  line-height: 1.38;
  font-weight: 680;
}

.hero-actions {
  display: grid;
  gap: 12px;
  width: min(330px, 100%);
  margin: 28px auto 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  color: #e9ebe9;
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: #fff;
  outline: none;
}

.secondary {
  border-color: rgba(255, 255, 255, 0.78);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  justify-self: stretch;
  perspective: 1200px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: -2%;
  right: -6%;
  top: 2%;
  bottom: -2%;
  z-index: -1;
  background:
    radial-gradient(ellipse at 62% 34%, rgba(255, 255, 255, 0.09), transparent 48%),
    radial-gradient(ellipse at 32% 68%, rgba(255, 255, 255, 0.07), transparent 42%);
  filter: blur(18px);
}

.reference-phone-mockup {
  display: none;
}

.exact-phone {
  display: grid;
  place-items: center end;
}

.exact-phone .reference-phone-mockup {
  position: relative;
  z-index: 4;
  display: block;
  width: min(680px, 100%);
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  --phone-x: 0px;
  --phone-y: 0px;
  --phone-scale: 1;
  filter: drop-shadow(24px 34px 42px rgba(0, 0, 0, 0.48));
  transition:
    opacity 1400ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1400ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.js-enabled .exact-phone .reference-phone-mockup {
  opacity: 0;
  transform: translate3d(calc(86px + var(--phone-x)), calc(42px + var(--phone-y)), 0) scale(0.94) rotate(1.2deg);
}

.is-ready .exact-phone .reference-phone-mockup {
  opacity: 1;
  transform: translate3d(var(--phone-x), var(--phone-y), 0) scale(var(--phone-scale));
}

.exact-phone .phone {
  display: none;
}

.phone {
  position: absolute;
  width: 312px;
  aspect-ratio: 0.485;
  transform-style: preserve-3d;
}

.phone-home {
  left: -1%;
  top: 30%;
  z-index: 1;
  transform: rotate(-17deg) skewY(1deg);
}

.phone-send {
  right: 1%;
  top: -1%;
  z-index: 3;
  width: 338px;
  transform: rotate(10deg) skewY(-1deg);
}

.phone-shell {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 12px;
  border: 2px solid rgba(222, 226, 224, 0.28);
  border-radius: 50px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.1) 9%, transparent 17%),
    linear-gradient(115deg, #8a8d8b, #202222 13%, #101111 47%, #303333 78%, #919391);
  box-shadow:
    20px 34px 42px rgba(0, 0, 0, 0.68),
    -7px 8px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 45px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.phone-shell::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 38px;
  pointer-events: none;
  box-shadow:
    inset 5px 0 9px rgba(255, 255, 255, 0.06),
    inset -5px 0 10px rgba(0, 0, 0, 0.65);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 38px;
  background:
    radial-gradient(circle at 48% 28%, rgba(255, 255, 255, 0.035), transparent 30%),
    linear-gradient(180deg, #151717, #0a0b0b 48%, #030404);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    inset 0 -18px 44px rgba(255, 255, 255, 0.025);
}

.screen-glass {
  position: absolute;
  inset: 0;
  z-index: 6;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.08), transparent 23%, transparent 69%, rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 26%);
  mix-blend-mode: screen;
}

.phone-send .phone-screen {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.035), transparent 25%),
    linear-gradient(180deg, #151717, #111313 54%, #0b0c0c);
}

.notch {
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 7;
  width: 72px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #020303;
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    inset 0 4px 8px rgba(255, 255, 255, 0.025);
}

.status-bar {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 43px;
  padding: 0 23px;
  color: #d9dbda;
  font-size: 0.69rem;
  font-weight: 800;
}

.status-icons {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #f0f0ef;
}

.status-icons i {
  display: block;
  opacity: 0.92;
}

.signal {
  width: 15px;
  height: 10px;
  background: linear-gradient(90deg, transparent 0 10%, #f0f0ef 10% 25%, transparent 25% 35%, #f0f0ef 35% 52%, transparent 52% 62%, #f0f0ef 62% 80%, transparent 80%);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 78% 0, 78% 22%, 58% 22%, 58% 44%, 38% 44%, 38% 66%, 18% 66%, 18% 100%);
}

.wifi {
  width: 12px;
  height: 9px;
  border: 2px solid #f0f0ef;
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 12px 12px 0 0;
}

.battery {
  position: relative;
  width: 18px;
  height: 8px;
  border: 1px solid #f0f0ef;
  border-radius: 3px;
}

.battery::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 12px;
  height: 4px;
  border-radius: 2px;
  background: #f0f0ef;
}

.battery::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -3px;
  width: 2px;
  height: 4px;
  border-radius: 0 2px 2px 0;
  background: #f0f0ef;
}

.side-button {
  position: absolute;
  width: 5px;
  height: 62px;
  border-radius: 999px;
  background: linear-gradient(180deg, #a1a4a2, #535655);
  opacity: 0.74;
}

.side-button.top {
  right: -5px;
  top: 168px;
}

.side-button.bottom {
  left: -5px;
  top: 194px;
}

.screen-brand {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.13);
  text-align: center;
  font-size: 1.17rem;
  font-weight: 900;
}

.screen-menu {
  position: absolute;
  z-index: 4;
  top: 47px;
  right: 25px;
  display: grid;
  gap: 4px;
  width: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.screen-menu span {
  display: block;
  height: 1px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.screen-menu span:first-child {
  width: 14px;
  justify-self: end;
}

.screen-menu span:last-child {
  width: 9px;
  justify-self: end;
}

.balance-stack {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 176px;
  transform: translate(-50%, -50%);
  text-align: center;
}

.balance-stack > span,
.send-flow label {
  display: block;
  color: #767b79;
  font-size: 0.54rem;
  font-weight: 850;
}

.eye-dot {
  display: inline-block;
  width: 10px;
  height: 6px;
  margin-left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  vertical-align: 1px;
}

.eye-dot::before {
  content: "";
  display: block;
  width: 2px;
  height: 2px;
  margin: 1px auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}

.balance-stack strong {
  display: block;
  margin-top: 10px;
  color: #f4f5f3;
  font-size: 2.18rem;
  line-height: 0.9;
  font-weight: 700;
}

.balance-stack strong em,
.amount-line em {
  margin-right: 4px;
  font-size: 0.46em;
  font-style: normal;
  vertical-align: 0.28em;
}

.balance-stack strong span {
  font-size: 1.06rem;
}

.asset-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 26px;
  margin-top: 14px;
  padding: 3px 10px 3px 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #aeb2b0;
  font-size: 0.53rem;
}

.coin {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin-right: -4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: white;
  font-size: 0.46rem;
}

.coin.usd {
  background: var(--mint);
}

.coin.btc {
  background: var(--amber);
}

.coin.gold {
  margin-right: 6px;
  background: var(--gold);
  color: #201b0f;
}

.balance-stack small,
.send-flow small {
  display: block;
  margin-top: 10px;
  color: #6f7472;
  font-size: 0.54rem;
}

.send-flow small {
  text-align: center;
}

.balance-stack small i {
  display: inline-block;
  width: 11px;
  height: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transform: skewX(-20deg);
}

.dock {
  position: absolute;
  left: 50%;
  bottom: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  width: 128px;
  min-height: 54px;
  padding: 6px;
  transform: translateX(-50%);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.dock span {
  display: grid;
  place-items: center;
  gap: 3px;
  color: #a9adab;
  font-size: 0.48rem;
}

.dock svg {
  width: 18px;
  height: 18px;
  color: #d8dad9;
}

.home-indicator {
  position: absolute;
  left: 50%;
  bottom: 13px;
  z-index: 8;
  width: 92px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.send-flow {
  padding: 2px 26px 0;
}

.send-header {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 38px;
  margin-top: 2px;
}

.send-header span {
  position: absolute;
  left: 0;
  top: 5px;
  color: #d8dad8;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
}

.screen-title {
  margin: 0;
  color: #e1e2df;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 850;
}

.input-line {
  display: flex;
  align-items: center;
  min-height: 41px;
  margin: 8px 0 14px;
  padding: 0 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  color: #cdcfce;
  font-size: 0.57rem;
  font-weight: 700;
}

.send-flow label b {
  float: right;
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--amber);
  color: white;
  font-size: 0.61rem;
}

.amount-line {
  margin-top: 15px;
  color: #f5f6f4;
  text-align: center;
  font-size: 2.68rem;
  line-height: 0.9;
  font-weight: 500;
}

.amount-line span {
  font-size: 1.16rem;
}

.fee-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 22px;
  margin: 12px auto 0;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: #d8dad9;
  font-size: 0.55rem;
}

.send-flow button {
  width: 100%;
  min-height: 39px;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 7px;
  background: transparent;
  color: #d7d9d8;
  font: inherit;
  font-size: 0.58rem;
  pointer-events: none;
}

.keypad {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 13px 18px 30px;
  background: #3d403f;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.035);
}

.keypad span {
  display: grid;
  place-items: center;
  min-height: 43px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.24);
  color: #f5f5f3;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1;
}

.keypad small {
  margin-top: 2px;
  font-size: 0.35rem;
  font-weight: 850;
}

.keypad .blank {
  background: transparent;
}

.delete-key {
  font-size: 1rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  transform: translateX(-50%);
  color: #f7f8f6;
  opacity: 0.72;
  animation: cue-bob 1800ms ease-in-out infinite;
}

.scroll-cue svg {
  width: 28px;
  height: 28px;
}

.faq {
  padding: 86px max(28px, calc((100vw - 1120px) / 2));
}

.closer {
  padding: 94px max(28px, calc((100vw - 720px) / 2)) 118px;
  background:
    radial-gradient(ellipse at 50% 13%, rgba(255, 255, 255, 0.055), transparent 27rem),
    linear-gradient(180deg, #111313 0%, #0a0b0b 34%, #050606 100%);
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: #c1c4c2;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.freedom h2,
.faq h2 {
  max-width: 720px;
  margin: 0;
  color: #f5f5f2;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  line-height: 0.96;
  font-weight: 900;
}

.closer-heading {
  margin: 0 auto 54px;
  text-align: center;
}

.closer-heading h2 {
  margin: 0;
  color: #f4f5f2;
  font-size: clamp(2.25rem, 4.5vw, 3.2rem);
  line-height: 0.98;
  font-weight: 850;
}

.closer-heading p {
  margin: 14px auto 0;
  color: #9da19f;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 800;
}

.section-lede {
  max-width: 670px;
  margin: 20px 0 0;
  color: #a6aaa8;
  font-size: 1.18rem;
  line-height: 1.42;
  font-weight: 750;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 86px;
  row-gap: 72px;
  align-items: center;
}

.feature-media {
  position: relative;
  display: grid;
  place-items: center;
  width: min(230px, 100%);
  height: 132px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.feature-media:nth-of-type(odd) {
  justify-self: end;
}

.feature-media:nth-of-type(even) {
  justify-self: start;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(5, 6, 6, 0), rgba(5, 6, 6, 0.42));
  pointer-events: none;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.62) contrast(1.04);
}

.feature-media.coins,
.feature-media.tokens,
.feature-media.username,
.feature-media.globe {
  background: rgba(255, 255, 255, 0.03);
}

.feature-media.username {
  width: min(240px, 100%);
  height: 112px;
}

.feature-media.globe {
  width: min(250px, 100%);
  height: 178px;
  align-self: end;
}

.feature-copy {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 132px;
  text-align: center;
}

.feature-copy h3 {
  max-width: 260px;
  margin: 0;
  color: #f2f3f1;
  font-size: 1.08rem;
  line-height: 1.04;
  font-weight: 900;
}

.feature-copy p {
  max-width: 250px;
  margin: 9px 0 0;
  color: #a3a7a5;
  font-size: 0.64rem;
  line-height: 1.18;
  font-weight: 800;
}

.feature-copy.send,
.feature-copy.custody {
  justify-self: start;
}

.feature-copy.dollars,
.feature-copy.username-copy {
  justify-self: end;
}

.js-enabled .reveal-item {
  opacity: 0;
  transform: translate3d(0, 72px, 0) scale(0.96);
  filter: blur(18px);
  transition:
    opacity 1050ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1050ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 1050ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.js-enabled .feature-showcase .feature-media.reveal-item {
  transform: translate3d(-48px, 78px, 0) scale(0.9);
}

.js-enabled .feature-showcase .feature-copy.reveal-item {
  transform: translate3d(48px, 78px, 0) scale(0.95);
}

.reveal-item.is-visible,
.js-enabled .feature-showcase .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.feature-showcase .reveal-item:nth-child(1) {
  --reveal-delay: 0ms;
}

.feature-showcase .reveal-item:nth-child(2) {
  --reveal-delay: 180ms;
}

.feature-showcase .reveal-item:nth-child(3) {
  --reveal-delay: 0ms;
}

.feature-showcase .reveal-item:nth-child(4) {
  --reveal-delay: 180ms;
}

.feature-showcase .reveal-item:nth-child(5) {
  --reveal-delay: 0ms;
}

.feature-showcase .reveal-item:nth-child(6) {
  --reveal-delay: 180ms;
}

.feature-showcase .reveal-item:nth-child(7) {
  --reveal-delay: 0ms;
}

.feature-showcase .reveal-item:nth-child(8) {
  --reveal-delay: 180ms;
}

.feature-media.is-visible img {
  animation: media-drift 9500ms ease-in-out 700ms infinite alternate;
}

@keyframes cue-bob {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 7px);
  }
}

@keyframes media-drift {
  from {
    transform: scale(1.02) translate3d(-2px, -2px, 0);
  }

  to {
    transform: scale(1.08) translate3d(4px, 3px, 0);
  }
}

.freedom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
  padding: 94px max(28px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, rgba(37, 196, 165, 0.12), transparent 30%),
    linear-gradient(180deg, #111312, #090a0a);
}

.freedom p {
  max-width: 580px;
  margin: 18px 0 0;
  color: #aeb2b0;
  font-size: 1.13rem;
  line-height: 1.44;
  font-weight: 720;
}

.wallet-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.wallet-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.wallet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 3, 0.72);
  backdrop-filter: blur(16px);
}

.wallet-panel {
  position: relative;
  width: min(390px, 100%);
  max-height: min(760px, calc(100svh - 44px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 16rem),
    linear-gradient(180deg, #181a1a, #070808);
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.72);
  transform: translateY(22px) scale(0.97);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.wallet-stage {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.wallet-stage.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: wallet-stage-in 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes wallet-stage-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.wallet-shell {
  min-height: 620px;
  padding: 26px 26px 30px;
}

.loading-shell {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.wallet-spinner {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: #f4f5f2;
  border-radius: 50%;
  animation: wallet-spin 900ms linear infinite;
}

@keyframes wallet-spin {
  to {
    transform: rotate(360deg);
  }
}

.wallet-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  color: #c7cac8;
  font-size: 0.74rem;
  font-weight: 850;
}

.wallet-back {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #f4f5f2;
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.wallet-appmark {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 52px auto 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, #363939, #171818);
}

.wallet-appmark span {
  width: 54px;
  height: 36px;
  clip-path: polygon(0 24%, 100% 24%, 83% 50%, 60% 50%, 50% 75%, 40% 50%, 17% 50%);
  background: #838986;
}

.wallet-eyebrow {
  margin: 0 0 10px;
  color: #929795;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wallet-shell h2 {
  margin: 0;
  color: #f5f6f3;
  text-align: center;
  font-size: 2.25rem;
  line-height: 0.98;
  font-weight: 850;
}

.wallet-text {
  max-width: 300px;
  margin: 16px auto 0;
  color: #a5a9a7;
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.42;
  font-weight: 650;
}

.wallet-primary {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 48px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  background: #f4f5f2;
  color: #0b0c0c;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
}

.wallet-secondary-action {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 46px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #f2f3f1;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  cursor: pointer;
}

.wallet-secondary-action:hover,
.wallet-secondary-action:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.075);
  outline: none;
}

.wallet-primary:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.wallet-primary.is-busy,
.wallet-actions button.is-busy,
.asset-list button.is-busy,
.wallet-chip.is-busy {
  cursor: wait;
  opacity: 0.72;
}

.seed-shell .wallet-primary {
  margin-top: 20px;
}

.seed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 28px 0 18px;
  padding: 0;
  counter-reset: seed;
  list-style: none;
}

.seed-grid li {
  counter-increment: seed;
  min-height: 54px;
  padding: 9px 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #f0f2ef;
  font-size: 0.84rem;
  font-weight: 850;
}

.seed-grid li::before {
  content: counter(seed, decimal-leading-zero);
  display: block;
  margin-bottom: 5px;
  color: #767b79;
  font-size: 0.56rem;
}

.seed-grid span {
  display: block;
  transition: filter 180ms ease, opacity 180ms ease;
}

.seed-grid.is-blurred span {
  opacity: 0.7;
  filter: blur(7px);
  user-select: none;
}

.seed-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #c7cac8;
  font-size: 0.8rem;
  line-height: 1.35;
  font-weight: 760;
}

.seed-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--mint);
}

.dashboard-shell {
  min-height: 680px;
  padding-bottom: 24px;
}

.wallet-chip {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #dfe1df;
  font: inherit;
  font-size: 0.72rem;
}

.dashboard-balance {
  margin: 30px 0 22px;
  text-align: center;
}

.dashboard-balance span,
.dashboard-balance small {
  display: block;
  color: #7e8380;
  font-size: 0.72rem;
  font-weight: 850;
}

.dashboard-balance strong {
  display: block;
  margin: 8px 0;
  color: #f6f7f4;
  font-size: 3.2rem;
  line-height: 0.96;
  font-weight: 760;
}

.wallet-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.wallet-actions button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #f3f4f1;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
}

.asset-list,
.transaction-list {
  display: grid;
  gap: 8px;
}

.asset-list button,
.transaction-list article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.asset-list button:hover,
.asset-list button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.asset-badge,
.transaction-list article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #0b0c0c;
  font-size: 0.82rem;
  font-weight: 950;
}

.asset-badge.eth {
  background: #8f97ff;
}

.asset-badge.usdt {
  background: var(--mint);
}

.asset-badge.btc {
  background: var(--amber);
}

.asset-badge.usdc {
  background: #4d9bff;
  color: #f7fbff;
}

.asset-list h3,
.transaction-list h3,
.transaction-list strong {
  margin: 0;
  color: #f2f3f1;
  font-size: 0.9rem;
  font-weight: 900;
}

.asset-list p,
.transaction-list p {
  margin: 4px 0 0;
  color: #8f9491;
  font-size: 0.74rem;
  font-weight: 700;
}

.asset-list button > strong,
.transaction-list b {
  color: #f2f3f1;
  font-size: 0.86rem;
  font-weight: 850;
}

.transaction-list {
  margin-top: 18px;
}

.list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 2px;
}

.list-title span {
  color: #777c7a;
  font-size: 0.72rem;
  font-weight: 850;
}

.transaction-list article > span {
  background: rgba(255, 255, 255, 0.1);
  color: #f3f4f1;
}

.empty-state {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.032);
  text-align: center;
}

.empty-state span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #c7cac8;
  font-size: 1.1rem;
  font-weight: 900;
}

.empty-state strong {
  color: #f1f2ef;
  font-size: 0.96rem;
  font-weight: 900;
}

.empty-state p {
  max-width: 250px;
  margin: 0;
  color: #8f9491;
  font-size: 0.75rem;
  line-height: 1.36;
  font-weight: 720;
}

.asset-detail-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 44px auto 22px;
  border-radius: 50%;
  background: var(--mint);
  color: #0b0c0c;
  font-size: 1.2rem;
  font-weight: 950;
}

.asset-detail-icon.btc {
  background: var(--amber);
}

.asset-detail-icon.eth {
  background: #8f97ff;
}

.asset-detail-icon.usdt {
  background: var(--mint);
}

.asset-detail-icon.usdc {
  background: #4d9bff;
  color: #f7fbff;
}

.asset-detail-balance {
  margin: 20px 0 24px;
  text-align: center;
}

.asset-detail-balance strong {
  display: block;
  color: #f6f7f4;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 760;
}

.asset-detail-balance span {
  display: block;
  margin-top: 8px;
  color: #858a87;
  font-size: 0.82rem;
  font-weight: 850;
}

.asset-actions {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 18px;
}

.receive-select-list {
  margin-top: 30px;
}

.action-shell {
  min-height: 620px;
}

.receive-assets-visual {
  display: grid;
  place-items: center;
  min-height: 156px;
  margin: 34px auto 24px;
}

.receive-coin {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #0b0c0c;
  font-size: 1.56rem;
  font-weight: 950;
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.receive-coin.eth {
  background: #8f97ff;
}

.receive-coin.btc {
  background: var(--amber);
}

.receive-coin.usdt {
  background: var(--mint);
}

.receive-coin.usdc {
  background: #4d9bff;
  color: #f7fbff;
}

.address-box {
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #dfe2df;
  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.wallet-form {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.wallet-form label {
  display: grid;
  gap: 8px;
  color: #939895;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wallet-form input,
.wallet-form select,
.wallet-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #f2f3f1;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  outline: none;
  padding: 0 13px;
}

.wallet-form input,
.wallet-form select {
  min-height: 46px;
}

.wallet-form textarea {
  min-height: 124px;
  padding-top: 13px;
  resize: none;
  line-height: 1.45;
}

.wallet-form select option {
  background: #121414;
  color: #f2f3f1;
}

.wallet-form input:focus,
.wallet-form select:focus,
.wallet-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.36);
}

.swap-preview {
  display: grid;
  place-items: center;
  min-height: 56px;
  border: 1px solid rgba(37, 196, 165, 0.26);
  border-radius: 8px;
  background: rgba(37, 196, 165, 0.08);
  color: #dff7f0;
  font-size: 1.05rem;
  font-weight: 900;
}

.action-feedback {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--mint);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 850;
}

.store-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: min(420px, 100%);
}

.store-badge {
  display: grid;
  align-content: center;
  min-height: 62px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.store-badge:hover,
.store-badge:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.store-badge span {
  color: #c7cac8;
  font-size: 0.72rem;
}

.store-badge strong {
  color: #ffffff;
  font-size: 1.08rem;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.accordion {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: #f0f1ef;
  font-size: 1.05rem;
  font-weight: 900;
}

summary::marker {
  color: var(--mint);
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: #a6aaa8;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 650;
}

@media (max-width: 1260px) {
  .hero {
    grid-template-columns: minmax(440px, 0.46fr) minmax(500px, 0.54fr);
    column-gap: 24px;
  }

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

  h1 {
    font-size: clamp(2.7rem, 4.3vw, 3.65rem);
  }

  .exact-phone .reference-phone-mockup {
    width: min(600px, 100%);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 54px;
  }

  .hero-copy {
    width: min(640px, 100%);
    justify-self: center;
  }

  .hero-visual {
    min-height: 430px;
    width: min(620px, 100%);
    justify-self: center;
  }

  .exact-phone .reference-phone-mockup {
    width: min(560px, 96%);
    margin-right: -3%;
  }

  .phone {
    width: 262px;
  }

  .phone-home {
    left: 6%;
    top: 23%;
  }

  .phone-send {
    right: 6%;
    top: 0;
    width: 285px;
  }

  .feature-showcase {
    column-gap: 64px;
    row-gap: 58px;
  }

  .closer {
    padding-left: max(28px, calc((100vw - 720px) / 2));
    padding-right: max(28px, calc((100vw - 720px) / 2));
  }

  .feature-copy h3 {
    font-size: 1rem;
  }

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

  .store-actions {
    width: min(430px, 100%);
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 28px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .app-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 18px;
    border-radius: 19px;
  }

  .app-icon span {
    width: 52px;
    height: 37px;
  }

  .app-icon span::before {
    width: 46px;
    height: 13px;
    box-shadow: 0 8px 0 rgba(222, 226, 224, 0.18);
  }

  .app-icon span::after {
    border-left-width: 26px;
    border-right-width: 26px;
    border-top-width: 27px;
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3.25rem);
    line-height: 0.96;
  }

  .hero-lede {
    margin-top: 16px;
    font-size: 0.95rem;
  }

  .tagline {
    margin-bottom: 16px;
  }

  .hero-actions {
    margin-top: 22px;
  }

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

  .exact-phone .reference-phone-mockup {
    width: min(390px, 108%);
    margin-right: -5%;
  }

  .phone {
    width: 202px;
    font-size: 0.82rem;
  }

  .phone-home {
    left: -1%;
    top: 24%;
  }

  .phone-send {
    right: -3%;
    width: 218px;
  }

  .feature-showcase,
  .store-actions {
    grid-template-columns: 1fr;
  }

  .feature-showcase {
    gap: 24px;
  }

  .feature-copy,
  .feature-copy.send,
  .feature-copy.custody,
  .feature-copy.dollars,
  .feature-copy.username-copy {
    justify-self: center;
  }

  .feature-copy {
    min-height: auto;
    padding: 6px 0 22px;
  }

  .feature-media {
    width: min(330px, 100%);
    justify-self: center;
  }

  .closer,
  .freedom,
  .faq {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(1.92rem, 9.4vw, 2.45rem);
  }

  .wallet-modal {
    padding: 10px;
  }

  .wallet-panel {
    width: 100%;
    max-height: calc(100svh - 20px);
    border-radius: 24px;
  }

  .wallet-shell {
    min-height: auto;
    padding: 22px 18px 24px;
  }

  .wallet-appmark {
    margin-top: 36px;
  }

  .wallet-shell h2 {
    font-size: 1.95rem;
  }

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

  .dashboard-balance strong {
    font-size: 2.55rem;
  }

  .hero-actions {
    width: 100%;
  }

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

  .exact-phone .reference-phone-mockup {
    width: min(335px, 112%);
  }

  .phone {
    width: 158px;
    font-size: 0.66rem;
  }

  .phone-send {
    width: 172px;
  }

  .keypad span {
    min-height: 31px;
  }

  .closer-heading h2,
  .freedom h2,
  .faq h2 {
    font-size: 2.45rem;
  }
}

/* ── Nova Wallet — Rötuşlar ── */

/* Wallet primary buton: mint glow efekti */
.wallet-primary:not(:disabled):hover,
.wallet-primary:not(:disabled):focus-visible {
  background: #f9faf7;
  box-shadow:
    0 0 0 3px rgba(37, 196, 165, 0.22),
    0 8px 28px rgba(37, 196, 165, 0.18);
  transform: translateY(-1px);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  outline: none;
}

/* Wallet secondary buton: aynı hover iyileştirmesi */
.wallet-secondary-action:hover,
.wallet-secondary-action:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

/* Dashboard asset listesi: daha belirgin hover */
.asset-list button {
  transition: background 180ms ease, border-color 180ms ease, transform 160ms ease;
}

.asset-list button:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateX(3px);
}

/* Seed grid: hover'da hafif parlama */
.seed-grid li {
  transition: border-color 160ms ease, background 160ms ease;
}

.seed-grid:not(.is-blurred) li:hover {
  border-color: rgba(37, 196, 165, 0.35);
  background: rgba(37, 196, 165, 0.07);
}

/* Seed grid numaraları: mint rengi */
.seed-grid li::before {
  color: var(--mint);
  opacity: 0.7;
}

/* Form input focus: mint border + hafif glow */
.wallet-form input:focus,
.wallet-form select:focus,
.wallet-form textarea:focus {
  border-color: rgba(37, 196, 165, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(37, 196, 165, 0.1);
  background: rgba(37, 196, 165, 0.05);
}

/* Wallet modal panel: üstte ince mint şerit */
.wallet-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 196, 165, 0.5), transparent);
  pointer-events: none;
  border-radius: 999px;
}

/* Dashboard balance: hafif mint glow */
.dashboard-balance strong {
  text-shadow: 0 0 40px rgba(37, 196, 165, 0.15);
}

/* Wallet spinner: mint rengi */
.wallet-spinner {
  border-top-color: var(--mint) !important;
  box-shadow: 0 0 18px rgba(37, 196, 165, 0.2);
}

/* Receive coin ikonu: pulse animasyonu */
.receive-coin {
  animation: coin-pulse 2.8s ease-in-out infinite;
}

@keyframes coin-pulse {
  0%, 100% { box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.22); }
  50% { box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42), 0 0 32px rgba(37, 196, 165, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22); }
}

/* Address box: hover'da hafif parlama */
.address-box {
  transition: border-color 180ms ease, background 180ms ease;
  cursor: default;
}

.address-box:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

/* Wallet back butonu: hover efekti */
.wallet-back {
  border-radius: 8px;
  transition: background 160ms ease, color 160ms ease;
}

.wallet-back:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--mint);
}

/* ── Coin badge hover: renk akışı efektleri ── */

.asset-badge {
  transition:
    transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 220ms ease,
    filter 220ms ease;
}

.asset-list button:hover .asset-badge {
  transform: scale(1.18) rotate(-6deg);
}

/* ETH — mor glow */
.asset-list button:hover .asset-badge.eth {
  box-shadow:
    0 0 0 4px rgba(143, 151, 255, 0.25),
    0 0 22px rgba(143, 151, 255, 0.5),
    0 0 48px rgba(143, 151, 255, 0.2);
  filter: brightness(1.2);
}

/* BTC — turuncu/amber glow */
.asset-list button:hover .asset-badge.btc {
  box-shadow:
    0 0 0 4px rgba(245, 165, 36, 0.25),
    0 0 22px rgba(245, 165, 36, 0.55),
    0 0 48px rgba(245, 165, 36, 0.22);
  filter: brightness(1.2);
}

/* USDT — mint/yeşil glow */
.asset-list button:hover .asset-badge.usdt {
  box-shadow:
    0 0 0 4px rgba(37, 196, 165, 0.25),
    0 0 22px rgba(37, 196, 165, 0.55),
    0 0 48px rgba(37, 196, 165, 0.22);
  filter: brightness(1.15);
}

/* USDC — mavi glow */
.asset-list button:hover .asset-badge.usdc {
  box-shadow:
    0 0 0 4px rgba(77, 155, 255, 0.25),
    0 0 22px rgba(77, 155, 255, 0.55),
    0 0 48px rgba(77, 155, 255, 0.22);
  filter: brightness(1.2);
}

/* Coin badge'in arka planına animasyonlu gradient */
.asset-badge {
  position: relative;
  overflow: hidden;
}

.asset-badge::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 20%,
    transparent 40%
  );
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 220ms ease;
}

.asset-list button:hover .asset-badge::after {
  opacity: 1;
  animation: badge-shine 1.2s linear infinite;
}

@keyframes badge-shine {
  to {
    transform: rotate(360deg);
  }
}

/* ── Solana coin renkleri ── */

.asset-badge.sol {
  background: linear-gradient(135deg, #9945ff, #14f195);
  color: #fff;
}

.receive-coin.sol {
  background: linear-gradient(135deg, #9945ff, #14f195);
  color: #fff;
}

/* Solana glow efekti */
.asset-list button:hover .asset-badge.sol {
  box-shadow:
    0 0 0 4px rgba(153, 69, 255, 0.25),
    0 0 22px rgba(153, 69, 255, 0.5),
    0 0 48px rgba(20, 241, 149, 0.2);
  filter: brightness(1.2);
}

/* ── Dashboard label: özel font efekti ── */
.dashboard-label {
  background: linear-gradient(90deg, #ffffff 0%, #25c4a5 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: label-shimmer 3.5s linear infinite;
  font-weight: 900;
  letter-spacing: 0.01em;
  font-size: 0.82rem;
}

@keyframes label-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── Network badges & pills ── */

/* Asset listesindeki sağ sütun */
.asset-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  margin-left: auto;
}

/* Küçük network badge (asset listede) */
.network-pill {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.network-pill.erc20 {
  background: rgba(143, 151, 255, 0.15);
  color: #a0a7ff;
  border: 1px solid rgba(143, 151, 255, 0.25);
}

.network-pill.sol-net {
  background: rgba(153, 69, 255, 0.15);
  color: #b07aff;
  border: 1px solid rgba(153, 69, 255, 0.25);
}

/* Network seçici (receive & send) */
.network-selector,
.send-network-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
}

.network-selector-label {
  color: #767b79;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.network-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Seçilebilir network pill butonu */
.net-pill {
  padding: 4px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #9c9f9d;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.net-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #e8ebe8;
}

.net-pill.is-active {
  background: rgba(37, 196, 165, 0.15);
  border-color: rgba(37, 196, 165, 0.5);
  color: #25c4a5;
}



/* ── Solana logosu — CSS ile üç paralel çizgi ── */
.asset-badge.sol,
.receive-coin.sol,
.asset-detail-icon.sol {
  background: #111118;
  border: 1.5px solid rgba(153, 69, 255, 0.4);
  position: relative;
  overflow: hidden;
  color: transparent !important;
  font-size: 0 !important;
}

/* Üç Solana çizgisi: before/after + box-shadow trick */
.asset-badge.sol::before,
.receive-coin.sol::before,
.asset-detail-icon.sol::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 13%;
  border-radius: 2px;
  background: linear-gradient(90deg, #9945ff, #14f195);
  box-shadow:
    0 -230% 0 0 #9945ff,
    0 230% 0 0 #14f195;
}

/* Daha büyük elementler için ayar */
.receive-coin.sol::before {
  height: 10%;
  box-shadow:
    0 -240% 0 0 #9945ff,
    0 240% 0 0 #14f195;
}

.asset-detail-icon.sol::before {
  height: 8%;
  left: 15%;
  box-shadow:
    0 -260% 0 0 #9945ff,
    0 260% 0 0 #14f195;
}

/* Tüm badge'ler için SVG background-image ile gerçek logo */
.asset-badge.sol,
.receive-coin.sol,
.asset-detail-icon.sol {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%239945FF'/%3E%3Cstop offset='100%25' stop-color='%2314F195'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='2' y='5' width='16' height='2.5' rx='1' fill='url(%23g)'/%3E%3Crect x='6' y='10.75' width='16' height='2.5' rx='1' fill='url(%23g)'/%3E%3Crect x='2' y='16.5' width='16' height='2.5' rx='1' fill='url(%23g)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 62%;
  background-position: center;
}

/* Önceki pseudo-element'i kapat */
.asset-badge.sol::before,
.receive-coin.sol::before,
.asset-detail-icon.sol::before {
  display: none;
}

/* Solana glow hover */
.asset-list button:hover .asset-badge.sol {
  box-shadow:
    0 0 0 4px rgba(153, 69, 255, 0.25),
    0 0 22px rgba(153, 69, 255, 0.5),
    0 0 48px rgba(20, 241, 149, 0.2);
  border-color: rgba(153, 69, 255, 0.7);
}

/* ── Dashboard Tether T amblem ── */
.dashboard-tether-mark {
  display: flex;
  justify-content: center;
  margin: 18px 0 4px;
}

.tether-t {
  width: 36px;
  height: 36px;
  fill: rgba(255, 255, 255, 0.08);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: fill 300ms ease;
}

.dashboard-tether-mark:hover .tether-t {
  fill: rgba(255, 255, 255, 0.13);
}

/* Solana logo final override */
.wallet-panel {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
}

.wallet-panel::-webkit-scrollbar {
  width: 6px;
}

.wallet-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.asset-badge.sol,
.receive-coin.sol,
.asset-detail-icon.sol {
  color: transparent !important;
  font-size: 0 !important;
  background-color: #111118 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%239945ff'/%3E%3Cstop offset='50%25' stop-color='%238c6cff'/%3E%3Cstop offset='100%25' stop-color='%2314f195'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg transform='translate(8 12)' fill='url(%23a)'%3E%3Cpath d='M5.4 0h38.7c1.2 0 1.8 1.5.9 2.4l-5.1 5.1c-.5.5-1.1.7-1.8.7H-.6c-1.2 0-1.8-1.5-.9-2.4L3.6.7C4.1.2 4.7 0 5.4 0Z'/%3E%3Cpath d='M43.1 16.2H4.4c-1.2 0-1.8-1.5-.9-2.4l5.1-5.1c.5-.5 1.1-.7 1.8-.7h38.7c1.2 0 1.8 1.5.9 2.4l-5.1 5.1c-.5.5-1.1.7-1.8.7Z' transform='translate(0 12)'/%3E%3Cpath d='M5.4 40h38.7c1.2 0 1.8 1.5.9 2.4l-5.1 5.1c-.5.5-1.1.7-1.8.7H-.6c-1.2 0-1.8-1.5-.9-2.4l5.1-5.1c.5-.5 1.1-.7 1.8-.7Z'/%3E%3C/g%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 66% !important;
  border-color: rgba(153, 69, 255, 0.44) !important;
}

.receive-coin.sol,
.asset-detail-icon.sol {
  background-size: 58% !important;
}

.asset-badge.sol svg,
.receive-coin.sol svg,
.asset-detail-icon.sol svg {
  display: none !important;
}

.asset-badge.sol::before,
.asset-badge.sol::after,
.receive-coin.sol::before,
.receive-coin.sol::after,
.asset-detail-icon.sol::before,
.asset-detail-icon.sol::after {
  display: none !important;
}
/* Wallet action motion pass */
.wallet-actions button,
.wallet-primary,
.wallet-secondary-action,
.wallet-chip,
.wallet-back {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform, box-shadow, background, border-color;
}

.wallet-actions button {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.18);
  transition:
    transform 190ms cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 190ms ease,
    border-color 190ms ease,
    background 190ms ease,
    filter 190ms ease;
}

.wallet-actions button::before,
.wallet-primary::before,
.wallet-secondary-action::before,
.wallet-chip::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.12) 46%, transparent 62%);
  opacity: 0;
  transform: translateX(-28%) scale(1.04);
  transition: opacity 180ms ease, transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
  pointer-events: none;
}

.wallet-actions button:hover,
.wallet-actions button:focus-visible {
  transform: translateY(-4px) scale(1.012);
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 38px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  outline: none;
}

.wallet-actions button:hover::before,
.wallet-actions button:focus-visible::before,
.wallet-primary:hover::before,
.wallet-primary:focus-visible::before,
.wallet-secondary-action:hover::before,
.wallet-secondary-action:focus-visible::before,
.wallet-chip:hover::before,
.wallet-chip:focus-visible::before {
  opacity: 1;
  transform: translateX(0) scale(1.04);
}

.wallet-actions button:active,
.wallet-actions button.is-tapping {
  transform: translateY(-1px) scale(0.985);
  filter: brightness(1.12);
  box-shadow:
    inset 0 2px 10px rgba(0, 0, 0, 0.28),
    0 8px 18px rgba(0, 0, 0, 0.28);
}

.wallet-actions.asset-actions button:hover,
.wallet-actions.asset-actions button:focus-visible {
  transform: translateY(-5px) scale(1.015);
}

.wallet-primary,
.wallet-secondary-action,
.wallet-chip {
  transition:
    transform 190ms cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 190ms ease,
    border-color 190ms ease,
    background 190ms ease,
    filter 190ms ease;
}

.wallet-primary:hover,
.wallet-primary:focus-visible,
.wallet-secondary-action:hover,
.wallet-secondary-action:focus-visible,
.wallet-chip:hover,
.wallet-chip:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 36px rgba(0, 0, 0, 0.34);
  outline: none;
}

.wallet-primary:active,
.wallet-primary.is-tapping,
.wallet-secondary-action:active,
.wallet-secondary-action.is-tapping,
.wallet-chip:active,
.wallet-chip.is-tapping {
  transform: translateY(0) scale(0.985);
  filter: brightness(1.14);
}

.wallet-back {
  transition: transform 170ms cubic-bezier(0.2, 0.9, 0.2, 1), color 170ms ease, opacity 170ms ease;
}

.wallet-back:hover,
.wallet-back:focus-visible {
  transform: translateX(-3px) scale(1.08);
  color: #ffffff;
  opacity: 1;
  outline: none;
}

.wallet-back:active,
.wallet-back.is-tapping {
  transform: translateX(-1px) scale(0.94);
}

@media (prefers-reduced-motion: reduce) {
  .wallet-actions button,
  .wallet-primary,
  .wallet-secondary-action,
  .wallet-chip,
  .wallet-back {
    transition: none;
  }

  .wallet-actions button:hover,
  .wallet-actions button:focus-visible,
  .wallet-actions button:active,
  .wallet-actions button.is-tapping,
  .wallet-primary:hover,
  .wallet-primary:focus-visible,
  .wallet-primary:active,
  .wallet-primary.is-tapping,
  .wallet-secondary-action:hover,
  .wallet-secondary-action:focus-visible,
  .wallet-secondary-action:active,
  .wallet-secondary-action.is-tapping,
  .wallet-chip:hover,
  .wallet-chip:focus-visible,
  .wallet-chip:active,
  .wallet-chip.is-tapping,
  .wallet-back:hover,
  .wallet-back:focus-visible,
  .wallet-back:active,
  .wallet-back.is-tapping {
    transform: none;
  }
}
/* Wallet launch scene transition */
body.wallet-preparing,
body.wallet-open {
  overflow: hidden;
}

.hero-copy,
.exact-phone .reference-phone-mockup,
.hero-visual::before {
  will-change: transform, opacity, filter;
}

body.wallet-scene-active .hero-copy {
  opacity: 0;
  transform: translate3d(-10vw, 6px, 0) scale(0.965);
  filter: blur(18px);
  pointer-events: none;
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 860ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.wallet-scene-active .exact-phone .reference-phone-mockup {
  opacity: 0;
  transform: translate3d(calc(12vw + var(--phone-x)), calc(var(--phone-y) - 4px), 0) scale(calc(var(--phone-scale) * 0.965)) rotate(1.2deg);
  filter: blur(18px) drop-shadow(24px 34px 42px rgba(0, 0, 0, 0.38));
  pointer-events: none;
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.wallet-scene-active .hero-visual::before {
  opacity: 0.25;
  transform: translate3d(7vw, 0, 0) scale(0.94);
  filter: blur(18px);
  transition:
    opacity 760ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wallet-modal {
  transition: opacity 360ms ease;
}

.wallet-modal .wallet-backdrop {
  opacity: 0;
  transition: opacity 420ms ease, backdrop-filter 420ms ease;
}

.wallet-modal.is-open .wallet-backdrop {
  opacity: 1;
}

.wallet-panel {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.955);
  filter: blur(10px);
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wallet-modal.is-open .wallet-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (max-width: 980px) {
  body.wallet-scene-active .hero-copy {
    transform: translate3d(0, -7vh, 0) scale(0.965);
  }

  body.wallet-scene-active .exact-phone .reference-phone-mockup {
    transform: translate3d(calc(var(--phone-x) + 8vw), calc(var(--phone-y) + 7vh), 0) scale(calc(var(--phone-scale) * 0.96)) rotate(1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.wallet-scene-active .hero-copy,
  body.wallet-scene-active .exact-phone .reference-phone-mockup,
  body.wallet-scene-active .hero-visual::before,
  .wallet-modal,
  .wallet-modal .wallet-backdrop,
  .wallet-panel {
    transition: none;
  }
}
/* USDT APY promo */
.apy-promo {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  width: min(350px, 100%);
  margin: 20px auto 0;
  padding: 14px 15px 12px;
  border: 1px solid rgba(37, 196, 165, 0.34);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 10%, rgba(37, 196, 165, 0.32), transparent 6rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035) 46%, rgba(37, 196, 165, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 55px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(37, 196, 165, 0.08);
  overflow: hidden;
  isolation: isolate;
  text-align: left;
  transform: translateZ(0);
  transition:
    transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.apy-promo::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.2) 42%, transparent 58%);
  opacity: 0.38;
  transform: translateX(-72%);
  animation: apy-shine 4.8s ease-in-out infinite;
}

.apy-promo::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #25c4a5;
  box-shadow: 0 0 18px rgba(37, 196, 165, 0.82);
  animation: apy-dot 1.8s ease-in-out infinite;
}

.apy-promo:hover,
.apy-promo:focus-within {
  transform: translateY(-4px) scale(1.012);
  border-color: rgba(37, 196, 165, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 0 52px rgba(37, 196, 165, 0.15);
}

.apy-token {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #061211;
  font-size: 1.28rem;
  font-weight: 950;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.46), transparent 34%),
    linear-gradient(135deg, #34e4c4, #16a889);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 14px 34px rgba(37, 196, 165, 0.22);
}

.apy-copy {
  min-width: 0;
}

.apy-copy span {
  display: block;
  color: rgba(230, 255, 249, 0.72);
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.apy-copy strong {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 5px;
  color: #f8fffc;
  font-size: 1.18rem;
  line-height: 1;
  font-weight: 900;
}

.apy-copy strong b {
  color: #31e0bf;
  font-size: 2rem;
  line-height: 0.9;
}

.apy-copy p {
  margin: 5px 0 0;
  color: rgba(226, 232, 229, 0.62);
  font-size: 0.76rem;
  line-height: 1.15;
  font-weight: 780;
}

.apy-meta {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.apy-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(244, 244, 241, 0.78);
  font-size: 0.66rem;
  font-weight: 850;
  background: rgba(0, 0, 0, 0.18);
}

@keyframes apy-shine {
  0%, 46% { transform: translateX(-78%); opacity: 0; }
  58% { opacity: 0.44; }
  78%, 100% { transform: translateX(88%); opacity: 0; }
}

@keyframes apy-dot {
  0%, 100% { transform: scale(0.82); opacity: 0.58; }
  50% { transform: scale(1); opacity: 1; }
}

@media (max-width: 980px) {
  .apy-promo {
    width: min(380px, 100%);
    margin-top: 18px;
  }
}

@media (max-width: 430px) {
  .apy-promo {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
  }

  .apy-token {
    width: 46px;
    height: 46px;
  }

  .apy-copy strong b {
    font-size: 1.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apy-promo,
  .apy-promo::before,
  .apy-promo::after {
    animation: none;
    transition: none;
  }
}
/* APY hover snapshot */
.apy-popover {
  position: absolute;
  left: 46px;
  right: 22px;
  top: calc(100% + 10px);
  z-index: 8;
  padding: 13px 14px 12px;
  border: 1px solid rgba(37, 196, 165, 0.26);
  border-radius: 13px;
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 196, 165, 0.2), transparent 7rem),
    linear-gradient(180deg, rgba(17, 25, 24, 0.98), rgba(7, 10, 10, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 50px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(37, 196, 165, 0.1);
  opacity: 0;
  transform: translate3d(0, -8px, 0) scale(0.965);
  filter: blur(8px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1),
    filter 260ms ease;
}

.apy-popover::before {
  content: "";
  position: absolute;
  left: 52px;
  top: -7px;
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(37, 196, 165, 0.26);
  border-top: 1px solid rgba(37, 196, 165, 0.26);
  background: rgba(17, 25, 24, 0.98);
  transform: rotate(45deg);
}

.apy-promo:hover .apy-popover,
.apy-promo:focus-within .apy-popover {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.apy-popover-label {
  display: block;
  margin-bottom: 9px;
  color: rgba(226, 255, 249, 0.58);
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.apy-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.apy-stat-row span {
  color: rgba(238, 242, 240, 0.66);
  font-size: 0.72rem;
  font-weight: 820;
}

.apy-stat-row strong {
  color: #f7fffc;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0;
}

.apy-stat-row:first-of-type strong {
  color: #31e0bf;
  text-shadow: 0 0 18px rgba(37, 196, 165, 0.32);
}

@media (max-width: 430px) {
  .apy-popover {
    left: 12px;
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apy-popover {
    transition: none;
    filter: none;
  }
}
/* APY popover clipping fix */
.apy-promo {
  overflow: visible !important;
  z-index: 12;
}

.apy-promo::before,
.apy-promo::after {
  pointer-events: none;
}

.apy-popover {
  z-index: 40;
  pointer-events: none;
}

.apy-promo:hover .apy-popover,
.apy-promo:focus-within .apy-popover {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  filter: blur(0) !important;
}
/* APY popover soft slide */
.apy-promo::before {
  display: none !important;
}

.apy-popover {
  visibility: hidden;
  opacity: 0 !important;
  transform: translate3d(0, -18px, 0) scale(0.975) !important;
  filter: blur(14px) !important;
  transition:
    visibility 0s linear 620ms,
    opacity 520ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 720ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.apy-promo:hover .apy-popover,
.apy-promo:focus-within .apy-popover {
  visibility: visible;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  filter: blur(0) !important;
  transition-delay: 0s, 80ms, 40ms, 40ms !important;
}

.apy-stat-row {
  opacity: 0;
  transform: translate3d(0, -6px, 0);
  transition:
    opacity 420ms ease,
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.apy-promo:hover .apy-stat-row,
.apy-promo:focus-within .apy-stat-row {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.apy-promo:hover .apy-stat-row:nth-of-type(1),
.apy-promo:focus-within .apy-stat-row:nth-of-type(1) {
  transition-delay: 150ms;
}

.apy-promo:hover .apy-stat-row:nth-of-type(2),
.apy-promo:focus-within .apy-stat-row:nth-of-type(2) {
  transition-delay: 230ms;
}

.apy-promo:hover .apy-stat-row:nth-of-type(3),
.apy-promo:focus-within .apy-stat-row:nth-of-type(3) {
  transition-delay: 310ms;
}

.apy-popover-label {
  opacity: 0;
  transform: translate3d(0, -5px, 0);
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.apy-promo:hover .apy-popover-label,
.apy-promo:focus-within .apy-popover-label {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 90ms;
}
/* Hero T logo override */
.app-icon {
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.12), transparent 4.8rem),
    linear-gradient(180deg, #343838, #181b1b 68%, #101212);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -16px 34px rgba(0, 0, 0, 0.22),
    0 22px 60px rgba(0, 0, 0, 0.42);
}

.app-icon::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 42%),
    radial-gradient(circle at 50% 95%, rgba(255, 255, 255, 0.05), transparent 48%);
}

.app-tether-t {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  fill: rgba(224, 230, 227, 0.5);
  filter:
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.05));
}

.app-icon:hover .app-tether-t {
  fill: rgba(235, 241, 238, 0.66);
}

@media (max-width: 640px) {
  .app-tether-t {
    width: 48px;
    height: 48px;
  }
}
/* Hero T logo muted pass */
.app-icon {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.055), transparent 4.4rem),
    linear-gradient(180deg, #222525, #111313 68%, #090a0a) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 -18px 34px rgba(0, 0, 0, 0.34),
    0 20px 56px rgba(0, 0, 0, 0.34) !important;
  opacity: 0.82;
}

.app-icon::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 44%),
    radial-gradient(circle at 50% 95%, rgba(255, 255, 255, 0.025), transparent 48%) !important;
}

.app-tether-t {
  fill: rgba(215, 222, 218, 0.28) !important;
  filter:
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.025)) !important;
}

.app-icon:hover .app-tether-t {
  fill: rgba(222, 228, 224, 0.38) !important;
}
/* Import validation states */
.wallet-form input.is-invalid,
.wallet-form textarea.is-invalid,
.wallet-form select.is-invalid {
  border-color: rgba(255, 82, 82, 0.92) !important;
  background: rgba(255, 82, 82, 0.075) !important;
  box-shadow:
    0 0 0 3px rgba(255, 82, 82, 0.12),
    0 0 24px rgba(255, 82, 82, 0.08) !important;
  animation: field-shake 220ms ease;
}

.wallet-form input.is-invalid:focus,
.wallet-form textarea.is-invalid:focus,
.wallet-form select.is-invalid:focus {
  border-color: rgba(255, 82, 82, 1) !important;
  box-shadow:
    0 0 0 3px rgba(255, 82, 82, 0.18),
    0 0 28px rgba(255, 82, 82, 0.1) !important;
}

.action-feedback.is-error {
  color: #ff7777;
}

@keyframes field-shake {
  0%, 100% { transform: translateX(0); }
  30% { transform: translateX(-3px); }
  65% { transform: translateX(3px); }
}
/* ── Dashboard user icon ── */
.dashboard-label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-icon {
  width: 18px;
  height: 18px;
  color: var(--mint);
  opacity: 0.85;
  flex-shrink: 0;
}

/* Reveal geri çıkış — hızlı kaybolsun ki tekrar girişte efekt görünsün */
.js-enabled .reveal-item:not(.is-visible) {
  transition-duration: 300ms;
  transition-delay: 0ms !important;
}
