﻿:root {
  --bg: #05070f;
  --bg-soft: #090d19;
  --text: #eef2fa;
  --muted: #b9c4dc;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --accent: #331216;
  --btn-base: #391317;
  --btn-base-strong: #4a191e;
  --btn-base-soft: #6c2b31;
  --btn-base-deep: #270d10;
  --btn-base-outline: #8f4f55;
  --btn-shadow: rgba(57, 19, 23, 0.42);
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 10% 0%, #11235d 0%, transparent 35%),
    radial-gradient(circle at 85% -5%, #5a1f49 0%, transparent 38%), var(--bg);
  color: var(--text);
}

html {
  scroll-padding-top: 96px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(170px, 330px) 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem clamp(0.9rem, 2vw, 1.7rem);
  border-bottom: none;
  background: transparent;
  backdrop-filter: none;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.scrolled {
  background: rgba(6, 8, 14, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.brand.dark {
  color: #111319;
}

.logo {
  width: clamp(160px, 14vw, 220px);
  height: auto;
  display: block;
}
.header-search input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.68rem 0.95rem;
  background: rgba(255, 255, 255, 0.11);
  color: #eff2f8;
}

.header-search input::placeholder {
  color: #c3cce1;
}

.header-nav {
  justify-self: center;
  display: flex;
  gap: clamp(0.85rem, 1.8vw, 1.5rem);
}

.header-nav a {
  color: #d6ddef;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition:
    color 150ms ease,
    opacity 150ms ease;
  opacity: 0.88;
}

.header-nav a:hover {
  color: #fff;
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 0.48rem 0.75rem;
  cursor: pointer;
}

.cta-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.66rem 1rem;
  color: #fff;
  background: linear-gradient(
    140deg,
    var(--btn-base-soft) 0%,
    var(--btn-base) 55%,
    var(--btn-base-deep) 100%
  );
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 8px 24px var(--btn-shadow);
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(36, 42, 54, 0.94);
  color: #fff;
  padding: 0;
  place-content: center;
  grid-template-rows: repeat(3, 2px);
  row-gap: 5px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.mobile-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: #f6f9ff;
  transition:
    transform 220ms ease,
    opacity 180ms ease;
}

.mobile-menu-btn[aria-expanded="true"] {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(56, 64, 82, 0.95);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-search-btn {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mobile-search-btn svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: min(920px, calc(100vh - 64px));
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(52, 20, 15, 0.34), transparent 40%),
    radial-gradient(circle at 18% 82%, rgba(52, 20, 15, 0.24), transparent 48%),
    linear-gradient(180deg, #080808 0%, #000000 100%);
  transform: scale(1.045);
  filter: saturate(1) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(52, 20, 15, 0.44), transparent 38%),
    radial-gradient(circle at 82% 18%, rgba(52, 20, 15, 0.3), transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.7));
}

.hero-scanlines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 34%;
  background: repeating-linear-gradient(
    90deg,
    rgba(52, 20, 15, 0.28) 0,
    rgba(52, 20, 15, 0.28) 1px,
    transparent 2px,
    transparent 17px
  );
  opacity: 0.32;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 92vw);
  padding-top: 5vh;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 8.1vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-content h1.typing-active::after {
  content: "|";
  margin-left: 0.08em;
  color: #d1afb0;
  animation: heroCaretBlink 1s steps(1, end) infinite;
}

@keyframes heroCaretBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.hero-content p {
  margin: 1rem auto 0;
  max-width: 40ch;
  color: #e9eefc;
  font-size: clamp(1rem, 1.9vw, 1.25rem);
}

.hero-cta {
  margin-top: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1a1214;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  min-width: 304px;
  padding: 1rem 1rem;
  font-weight: 800;
  font-size: 1.09rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
  transition: transform 180ms ease;
}

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

.hero-note {
  display: block;
  margin-top: 0.62rem;
  color: #ccd4e8;
  font-weight: 500;
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: clamp(1.2rem, 4vh, 2.5rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 12, 21, 0.72);
  backdrop-filter: blur(8px);
}

.hero-card img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.hero-card strong {
  display: block;
  font-size: 0.95rem;
}

.hero-card p {
  margin: 0.2rem 0 0;
  color: #c7d0e6;
  font-size: 0.82rem;
}

.ticker-wrap {
  width: 100%;
  margin: -2px 0 0;
  border: 1px solid var(--line-soft);
  border-radius: 0;
  background: rgba(8, 11, 18, 0.75);
  overflow: hidden;
  position: relative;
  z-index: 3;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

#tv-ticker {
  min-height: 46px;
}

.showcase {
  position: relative;
  overflow: hidden;
  padding: 3.8rem 1.2rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(
      circle at 14% 74%,
      rgba(37, 81, 193, 0.52),
      transparent 36%
    ),
    radial-gradient(
      circle at 86% 46%,
      rgba(204, 84, 152, 0.44),
      transparent 34%
    ),
    linear-gradient(180deg, #05070c 0%, #04060b 100%);
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/images/hero-space.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  pointer-events: none;
}

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

.showcase-head {
  display: none;
}

.showcase h2 {
  font-size: clamp(2rem, 5.2vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.showcase p {
  margin: 1rem auto 0;
  color: #d7deef;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 60ch;
}

.showcase-frame {
  position: relative;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 6px;
  border-radius: 16px;
  background: linear-gradient(130deg, #2f7cff, #ea61b0);
  box-shadow:
    0 0 36px rgba(109, 117, 255, 0.46),
    0 0 64px rgba(223, 98, 191, 0.34),
    0 30px 70px rgba(0, 0, 0, 0.56);
}

.showcase-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -16px;
  width: min(78%, 860px);
  height: 34px;
  background: radial-gradient(
    ellipse at center,
    rgba(167, 92, 195, 0.45) 0%,
    rgba(52, 21, 80, 0.14) 58%,
    transparent 100%
  );
  filter: blur(2px);
  pointer-events: none;
}

.frame-toolbar {
  display: none;
}

.frame-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

#tv-showcase-chart {
  aspect-ratio: 16 / 8.6;
  height: auto;
  min-height: clamp(300px, 46vw, 540px);
  max-height: 560px;
  border-radius: 11px;
  overflow: hidden;
  background: #05080f;
}

.showcase-cta {
  margin: 2.8rem auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 236px;
  min-height: 62px;
  padding: 0 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  background: #fff;
  color: #141619;
  font-size: 1.08rem;
  font-weight: 800;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

@media (max-width: 980px) {
  .showcase {
    padding: 3.2rem 1rem 4.4rem;
  }

  .showcase-frame {
    width: min(1180px, calc(100vw - 32px));
    margin-left: auto;
    margin-right: auto;
  }

  #tv-showcase-chart {
    min-height: clamp(260px, 60vw, 430px);
    max-height: 450px;
  }
}

@media (max-width: 620px) {
  .showcase {
    padding: 2.8rem 0.75rem 4rem;
  }

  .showcase-frame {
    width: calc(100vw - 24px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  #tv-showcase-chart {
    min-height: clamp(235px, 60vw, 320px);
  }
}

.value-grid {
  width: min(1180px, 92vw);
  margin: 0 auto 5.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.value-grid article {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(
    180deg,
    rgba(12, 16, 26, 0.9),
    rgba(8, 11, 18, 0.95)
  );
}

.value-grid h3 {
  font-size: 1.02rem;
}

.value-grid p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.92rem;
}

.news-widget-card {
  padding: 0.75rem;
  background: linear-gradient(
    180deg,
    rgba(12, 16, 26, 0.93),
    rgba(8, 11, 18, 0.98)
  );
}

.news-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.2rem 0.25rem 0.7rem;
}

.news-widget-head h3 {
  font-size: 1rem;
}

.news-pill {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(51, 18, 22, 0.56);
  color: #ffdbe2;
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.news-widget {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #090d16;
}

.fun-strip {
  width: min(1180px, 92vw);
  margin: -3rem auto 4.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.fun-strip article {
  border: 1px solid var(--line-soft);
  background: linear-gradient(
    145deg,
    rgba(20, 28, 42, 0.85),
    rgba(10, 14, 22, 0.94)
  );
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.fun-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fun-strip strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.12rem;
}

.content-section {
  width: min(1180px, 92vw);
  margin: 0 auto 3rem;
  padding: 1.2rem;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(12, 16, 26, 0.82),
    rgba(8, 11, 18, 0.94)
  );
}

.content-head h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.content-head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.content-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.content-grid article {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
}

.content-widget-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1rem;
}

.content-widget {
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #090d16;
}

.get-started-section {
  width: 100%;
  margin: 0;
  padding: 4rem 0 4.6rem;
  background:
    radial-gradient(80% 120% at 8% 0%, rgba(29, 44, 74, 0.48), transparent 52%),
    radial-gradient(
      75% 100% at 88% 100%,
      rgba(20, 37, 63, 0.34),
      transparent 60%
    ),
    linear-gradient(180deg, #060910 0%, #090f1a 46%, #05080f 100%);
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.wire-grid {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(300px, 1fr);
  gap: 1.2rem;
  align-items: center;
}

.wire-copy {
  max-width: 560px;
}

.start-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffcad6;
  font-size: 0.72rem;
}

.wire-copy h2 {
  margin-top: 0.35rem;
  font-size: clamp(2rem, 4.2vw, 4rem);
  max-width: 11ch;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.wire-copy p {
  margin: 0.7rem 0 0;
  color: #c7d3ea;
  line-height: 1.5;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  max-width: 28ch;
}

.wire-copy small {
  display: block;
  margin-top: 0.52rem;
  color: #93a1bf;
  font-size: 0.78rem;
}

.wire-form {
  margin-top: 1rem;
  max-width: 440px;
  display: grid;
  gap: 0.55rem;
}

.wire-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 0.78rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  color: #eff4ff;
  font-size: 1rem;
}

.wire-btn {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 0.82rem 0.9rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.08rem;
  cursor: pointer;
  background: linear-gradient(
    135deg,
    var(--btn-base-soft) 0%,
    var(--btn-base) 58%,
    var(--btn-base-deep) 100%
  );
  box-shadow: 0 12px 24px var(--btn-shadow);
}

.wire-visual {
  display: grid;
  place-items: center;
  min-height: 560px;
}

.phone-stage {
  position: relative;
  width: min(92%, 480px);
  min-height: 540px;
}

.phone-stage::after {
  content: "";
  position: absolute;
  right: 3%;
  bottom: 0;
  width: 280px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.14) 60%,
    transparent 100%
  );
  filter: blur(1.2px);
}

.phone-shell {
  position: absolute;
  right: 8%;
  top: 1%;
  width: 258px;
  height: 520px;
  border-radius: 44px;
  background: linear-gradient(138deg, #5f6772 0%, #20252f 34%, #8992a1 100%);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 38px 65px rgba(0, 0, 0, 0.58);
  animation: phoneFloat 5.8s ease-in-out infinite;
}

.phone-side {
  position: absolute;
  display: block;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #98a1af, #4a525f);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.phone-side-left {
  left: -3px;
  top: 104px;
  height: 72px;
}

.phone-side-left::after {
  content: "";
  position: absolute;
  left: 0;
  top: 86px;
  width: 4px;
  height: 62px;
  border-radius: 999px;
  background: linear-gradient(180deg, #98a1af, #4a525f);
}

.phone-side-right {
  right: -3px;
  top: 132px;
  height: 92px;
}

.phone-screen {
  position: absolute;
  inset: 11px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      circle at 24% -10%,
      rgba(30, 145, 255, 0.26),
      transparent 46%
    ),
    linear-gradient(170deg, #0f1a2c 0%, #111f38 54%, #0a1629 100%);
}

.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 122px;
  height: 28px;
  border-radius: 999px;
  background: #0b1018;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.08);
}

.phone-ui {
  position: absolute;
  inset: 0;
  padding: 48px 14px 14px;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f4f8ff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.phone-toolbar {
  margin-top: 0.52rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.phone-wallet {
  color: #e3edff;
  font-size: 1rem;
  font-weight: 700;
}

.phone-deposit {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0.28rem 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  color: #dce8fd;
  font-size: 0.72rem;
  font-weight: 700;
}

.phone-pairs {
  margin-top: 0.62rem;
  display: flex;
  gap: 0.66rem;
  align-items: center;
  color: #90a7cf;
  font-size: 0.8rem;
}

.phone-pairs .active {
  color: #e7efff;
}

.phone-pairs .plus {
  margin-left: auto;
  font-size: 1.35rem;
  color: #f9d531;
  line-height: 1;
}

.phone-chart {
  position: relative;
  margin-top: 0.62rem;
  height: 276px;
  border-radius: 6px;
  border: 1px solid rgba(123, 157, 196, 0.25);
  background: linear-gradient(180deg, #061c29 0%, #071622 100%);
  overflow: hidden;
}

.phone-chart-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(167, 190, 221, 0.2) 0,
      rgba(167, 190, 221, 0.2) 1px,
      transparent 1px,
      transparent 46px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(167, 190, 221, 0.15) 0,
      rgba(167, 190, 221, 0.15) 1px,
      transparent 1px,
      transparent 48px
    );
}

.phone-candles {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#f4dd2f, #f4dd2f), linear-gradient(#f4dd2f, #f4dd2f),
    linear-gradient(#f4dd2f, #f4dd2f), linear-gradient(#f4dd2f, #f4dd2f),
    linear-gradient(#f4dd2f, #f4dd2f), linear-gradient(#f4dd2f, #f4dd2f),
    linear-gradient(#f4dd2f, #f4dd2f), linear-gradient(#f4dd2f, #f4dd2f);
  background-size:
    3px 22px,
    3px 30px,
    3px 16px,
    3px 40px,
    3px 24px,
    3px 58px,
    3px 62px,
    3px 72px;
  background-position:
    46% 42%,
    52% 47%,
    58% 39%,
    64% 51%,
    70% 58%,
    76% 66%,
    82% 74%,
    88% 80%;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 3px rgba(242, 223, 52, 0.35));
  animation: candleDrift 4.2s ease-in-out infinite;
}

.phone-price-tag {
  position: absolute;
  right: 0;
  padding: 0.16rem 0.42rem;
  border-radius: 4px 0 0 4px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.price-blue {
  top: 40%;
  background: #2b8ff8;
}

.price-red {
  top: 49%;
  background: #ea4f47;
}

.phone-footer-row {
  margin-top: 0.56rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  color: #9bb0d1;
  font-size: 0.66rem;
}

.phone-home-indicator {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 98px;
  height: 4px;
  border-radius: 999px;
  background: rgba(245, 250, 255, 0.78);
}

.phone-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    124deg,
    rgba(255, 255, 255, 0.2) 1%,
    rgba(255, 255, 255, 0) 36%,
    rgba(255, 255, 255, 0.14) 92%
  );
  pointer-events: none;
}

.phone-stats-card {
  position: absolute;
  left: -2%;
  top: 18%;
  width: min(330px, 68vw);
  padding: 1rem 1rem 0.85rem;
  border-radius: 14px;
  background: rgba(10, 20, 32, 0.94);
  border: 1px solid rgba(172, 196, 225, 0.18);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.38);
  animation: statsCardDrift 4.6s ease-in-out infinite;
}

.phone-stats-card p {
  margin: 0 0 0.45rem;
  display: flex;
  justify-content: space-between;
  gap: 0.45rem;
  color: #c6d4ed;
  font-size: 0.72rem;
}

.phone-stats-card p:last-child {
  margin-bottom: 0;
}

.phone-stats-card span {
  color: #a9bad8;
}

.phone-stats-card strong {
  color: #f0f6ff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes candleDrift {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.9;
  }
  50% {
    transform: translateX(-3px);
    opacity: 1;
  }
}

@keyframes statsCardDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.content-grid article p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.markets-hotlist-section {
  padding: 1.1rem;
}

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

.markets-widget {
  height: 350px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.4rem;
  padding: 3.4rem 1.8rem;
  background: #edf1f6;
  color: #171921;
  overflow: hidden;
}

.footer-left {
  position: relative;
  z-index: 1;
}

.footer-tag {
  margin: 0.7rem 0 1rem;
  color: #232733;
  font-size: 1.45rem;
  font-weight: 600;
}

.socials {
  display: flex;
  gap: 0.6rem;
}

.socials a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #1d2028;
  font-weight: 700;
  font-size: 0.72rem;
}

.legal {
  margin-top: 1.2rem;
  color: #5a6276;
  font-size: 0.86rem;
  line-height: 1.45;
}

.footer-cols {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.3rem;
}

.footer-cols section {
  display: grid;
  gap: 0.32rem;
  align-content: start;
}

.footer-cols h3 {
  margin-bottom: 0.45rem;
  font-size: 0.86rem;
  color: #656e82;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-cols a {
  text-decoration: none;
  color: #151a25;
  font-weight: 600;
  font-size: 0.94rem;
}

.footer-cols a:hover {
  color: #2d3550;
}

.rocket-trail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(32vw, 460px);
  opacity: 0.82;
}

@media (max-width: 1180px) {
  .footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(5, 7, 13, 0.96);
  }

  .header-nav.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .hero-card {
    display: none;
  }

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

  .news-widget {
    height: 250px;
  }

  .fun-strip {
    margin-top: -2.2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  body {
    position: relative;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(3, 6, 12, 0.56);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 45;
  }

  body.menu-open::before {
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    grid-template-columns: auto auto 1fr;
    gap: 0.7rem;
    padding: 0.7rem 0.8rem;
    border-bottom: none;
    background: transparent;
    backdrop-filter: none;
    z-index: 50;
  }

  .header-search {
    display: none;
  }

  .header-search.search-open {
    display: block;
    position: fixed;
    top: 4.1rem;
    left: 0.8rem;
    right: 0.8rem;
    z-index: 56;
  }

  .header-search.search-open input {
    background: rgba(8, 12, 22, 0.96);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  }

  .lang-btn {
    display: none;
  }

  .mobile-menu-btn,
  .mobile-search-btn {
    display: inline-grid;
  }

  .logo {
    width: clamp(120px, 34vw, 170px);
    height: auto;
  }

  .header-actions {
    justify-self: end;
    gap: 0.45rem;
  }

  .cta-btn {
    display: inline-flex;
    border-radius: 11px;
    padding: 0.66rem 0.86rem;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.01em;
  }

  .header-nav {
    position: fixed;
    top: 4.6rem;
    left: 0.75rem;
    bottom: auto;
    width: min(86vw, 360px);
    max-height: calc(100svh - 5.5rem);
    margin: 0;
    padding: 0.7rem;
    gap: 0.45rem;
    border: 1px solid rgba(170, 193, 235, 0.34);
    border-radius: 20px;
    background: linear-gradient(
      180deg,
      rgba(11, 18, 33, 0.96),
      rgba(7, 12, 25, 0.98)
    );
    backdrop-filter: blur(20px);
    box-shadow:
      0 20px 46px rgba(0, 0, 0, 0.48),
      inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateX(-105%);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transition:
      transform 260ms ease,
      opacity 210ms ease;
    z-index: 55;
  }

  .header-nav.open {
    display: flex;
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-nav a {
    display: block;
    border: 1px solid rgba(170, 193, 235, 0.18);
    border-radius: 12px;
    padding: 0.78rem 0.9rem;
    background: rgba(255, 255, 255, 0.02);
    font-size: 1.02rem;
    font-weight: 700;
    opacity: 1;
    transition:
      transform 150ms ease,
      border-color 150ms ease,
      background 150ms ease;
  }

  .header-nav a:hover,
  .header-nav a:focus-visible {
    transform: translateX(2px);
    border-color: rgba(170, 193, 235, 0.45);
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    min-height: 100svh;
    padding-top: 5.5rem;
  }

  .hero-content {
    width: min(94vw, 460px);
    padding-top: 0;
  }

  .hero-content h1 {
    max-width: 8ch;
    margin: 0 auto;
    line-height: 0.98;
  }

  .hero-content p {
    max-width: 24ch;
    margin-top: 0.95rem;
    font-size: 1.02rem;
  }

  .hero-cta {
    min-width: 0;
    width: min(88vw, 320px);
    margin-top: 1.15rem;
    padding: 0.86rem 1rem;
    border-radius: 12px;
    font-size: 0.94rem;
  }

  .hero-note {
    margin-top: 0.58rem;
    font-size: 0.83rem;
    color: #d7dfef;
  }

  .showcase {
    padding-top: 4rem;
  }

  .fun-strip {
    margin: -1.4rem auto 3rem;
  }

  .content-grid,
  .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-section {
    padding: 1rem;
  }

  .content-widget {
    height: 230px;
  }

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

  .markets-widget {
    height: 300px;
  }

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

  .wire-copy {
    max-width: 100%;
  }

  .wire-copy h2 {
    max-width: 100%;
  }

  .wire-visual {
    min-height: 500px;
  }

  .phone-stage {
    min-height: 460px;
  }
}

@media (max-width: 560px) {
  .header-nav a {
    font-size: 0.95rem;
  }

  .cta-btn {
    padding: 0.54rem 0.68rem;
    font-size: 0.86rem;
  }

  .content-grid,
  .footer-cols,
  .fun-strip {
    grid-template-columns: 1fr;
  }

  .wire-copy h2 {
    font-size: clamp(1.7rem, 10.5vw, 2.75rem);
    line-height: 1.05;
  }

  .wire-copy p {
    max-width: 100%;
    font-size: 1.02rem;
  }

  .wire-visual {
    min-height: 430px;
  }

  .phone-stage {
    min-height: 390px;
    width: 100%;
  }

  .phone-shell {
    width: 182px;
    height: 360px;
    right: 2%;
    top: 5%;
    border-radius: 32px;
  }

  .phone-screen {
    inset: 8px;
    border-radius: 26px;
  }

  .phone-island {
    width: 90px;
    height: 20px;
    top: 8px;
  }

  .phone-ui {
    padding: 38px 10px 10px;
  }

  .phone-status {
    font-size: 0.62rem;
  }

  .phone-toolbar {
    margin-top: 0.4rem;
  }

  .phone-wallet {
    font-size: 0.86rem;
  }

  .phone-deposit {
    font-size: 0.62rem;
    padding: 0.2rem 0.44rem;
  }

  .phone-pairs {
    margin-top: 0.42rem;
    font-size: 0.62rem;
    gap: 0.4rem;
  }

  .phone-pairs .plus {
    font-size: 1.05rem;
  }

  .phone-chart {
    height: 164px;
    margin-top: 0.42rem;
  }

  .phone-price-tag {
    font-size: 0.56rem;
    padding: 0.12rem 0.3rem;
  }

  .phone-footer-row {
    margin-top: 0.38rem;
    font-size: 0.54rem;
  }

  .phone-home-indicator {
    width: 72px;
    height: 3px;
    bottom: 6px;
  }

  .phone-side {
    width: 3px;
  }

  .phone-side-left {
    left: -2px;
    top: 80px;
    height: 52px;
  }

  .phone-side-left::after {
    width: 3px;
    top: 64px;
    height: 46px;
  }

  .phone-side-right {
    right: -2px;
    top: 102px;
    height: 70px;
  }

  .phone-stage::after {
    width: 220px;
    right: 2%;
  }

  .phone-stats-card {
    top: 14%;
    left: -1%;
    width: min(220px, 72vw);
    padding: 0.64rem 0.62rem 0.54rem;
    border-radius: 10px;
  }

  .phone-stats-card p {
    margin-bottom: 0.3rem;
    font-size: 0.54rem;
  }

  .hero-content h1 {
    font-size: clamp(2.45rem, 12.2vw, 3.35rem);
  }
}

/* Repaired get-started section */
.wire-copy h2 {
  font-family: "Space Grotesk", "DM Sans", system-ui, sans-serif;
  font-size: clamp(2.6rem, 5.2vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  max-width: 8.5ch;
}
.wire-copy p {
  max-width: 22ch;
}
.wire-cta-block {
  margin-top: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}
.wire-cta-block small {
  display: block;
  margin-top: 0;
  color: #93a1bf;
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 32ch;
}
.wire-btn {
  width: auto;
  min-width: 240px;
  padding: 0.95rem 1.4rem;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
}
.wire-visual {
  display: grid;
  place-items: center;
  min-height: 560px;
}
.wire-photo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.wire-phone-photo {
  width: min(100%, 680px);
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.45));
}

/* Added Apexequityassets-inspired sections */
.city-wrap {
  width: min(1680px, calc(100% - 120px));
  margin: 0 auto;
}
.city-banner-wrap {
  background:
    radial-gradient(
      120% 140% at 10% -10%,
      rgba(42, 76, 167, 0.2),
      transparent 52%
    ),
    radial-gradient(
      100% 120% at 95% 100%,
      rgba(122, 35, 98, 0.16),
      transparent 58%
    ),
    #070b14;
  color: #eef2fb;
}
.city-markets-section,
.city-why-section {
  background:
    radial-gradient(
      120% 140% at 10% -10%,
      rgba(42, 76, 167, 0.28),
      transparent 52%
    ),
    radial-gradient(
      100% 120% at 95% 100%,
      rgba(122, 35, 98, 0.24),
      transparent 58%
    ),
    #070b14;
  color: #eef2fb;
}
.city-markets-section {
  padding: 7rem 0 5.5rem;
}
.city-banner-wrap {
  padding: 1.5rem 0 5.5rem;
}
.city-why-section {
  padding: 5.5rem 0;
}

.city-markets-section .city-section-head h2,
.city-why-section .city-why-copy h2 {
  color: #f6f8ff;
}

.city-markets-section .city-section-head p,
.city-why-section .city-why-copy p,
.city-why-section .city-why-copy small {
  color: #c3cee5;
}

.city-markets-section .city-trade-card,
.city-why-section .city-why-card {
  background: linear-gradient(180deg, #111a2b 0%, #0e1524 100%);
  border-color: rgba(200, 214, 244, 0.28);
}

.city-markets-section .city-trade-image {
  border-bottom-color: rgba(200, 214, 244, 0.28);
}

.city-markets-section .city-trade-body h3,
.city-markets-section .city-trade-body p,
.city-markets-section .city-trade-body a,
.city-why-section .city-why-card h3,
.city-why-section .city-why-card p,
.city-why-section .city-why-card a {
  color: #eef3ff;
}

.city-section-head {
  max-width: 66rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.city-section-head h2,
.city-why-copy h2,
.city-banner h2,
.city-steps-cta h2 {
  font-family: "Space Grotesk", "DM Sans", system-ui, sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #050505;
  margin: 0 0 1.2rem;
}
.city-section-head p,
.city-why-copy p {
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  line-height: 1.45;
  color: #222;
  margin: 0 auto;
}
.city-trade-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.8rem;
}
.city-trade-card {
  background: #f7f7f7;
  border: 3px solid #111;
  min-height: 24rem;
  display: flex;
  flex-direction: column;
}
.city-trade-image {
  height: 8.4rem;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid #111;
}
.city-trade-image-indices {
  background:
    linear-gradient(135deg, rgba(91, 45, 68, 0.38), rgba(255, 255, 255, 0) 70%),
    url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1200&q=80");
}
.city-trade-image-shares {
  background:
    linear-gradient(135deg, rgba(45, 45, 45, 0.32), rgba(255, 255, 255, 0) 70%),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80");
}
.city-trade-image-forex {
  background:
    linear-gradient(135deg, rgba(86, 36, 86, 0.3), rgba(255, 255, 255, 0) 70%),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80");
}
.city-trade-image-commodities {
  background:
    linear-gradient(135deg, rgba(65, 39, 28, 0.34), rgba(255, 255, 255, 0) 70%),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1200&q=80");
}
.city-trade-image-other {
  background:
    linear-gradient(135deg, rgba(56, 26, 66, 0.4), rgba(255, 255, 255, 0) 70%),
    url("https://images.unsplash.com/photo-1642790106117-e829e14a795f?auto=format&fit=crop&w=1200&q=80");
}
.city-trade-body {
  padding: 1.6rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.city-trade-body h3 {
  font-size: 2rem;
  line-height: 1.02;
  margin: 0 0 0.9rem;
  color: #060606;
}
.city-trade-body p {
  margin: 0 0 1.35rem;
  color: #1e1e1e;
  font-size: 1.16rem;
  line-height: 1.35;
}
.city-trade-body a,
.city-why-card a {
  margin-top: auto;
  font-size: 1.15rem;
  font-weight: 700;
  color: #080808;
  text-decoration: none;
}

.city-banner {
  background: linear-gradient(90deg, #4c20bf 0%, #b01597 50%, #ff4242 100%);
  padding: 3rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #fff;
}
.city-banner p {
  font-size: 1.8rem;
  margin: 0;
}
.city-banner-btn,
.city-primary-btn,
.city-steps-primary,
.city-steps-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 4rem;
  padding: 0 2rem;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 600;
}
.city-banner-btn {
  background: #ffffff;
  color: #1a1214;
  min-width: 17rem;
}

.city-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.5fr);
  gap: 2rem;
  align-items: start;
}
.city-why-copy p {
  margin: 0 0 2rem;
}
.city-primary-btn {
  background: linear-gradient(
    155deg,
    var(--btn-base-soft) 0%,
    var(--btn-base) 62%,
    var(--btn-base-deep) 100%
  );
  color: #fff;
  margin-bottom: 1.6rem;
}
.city-why-copy small {
  display: block;
  color: #222;
  font-size: 1rem;
  line-height: 1.45;
}
.city-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.city-why-card {
  border: 3px solid #111;
  border-radius: 1.6rem;
  background: #f7f7f7;
  padding: 1.9rem 1.8rem;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
}
.city-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 2.4rem;
  color: #9e31b3;
  margin-bottom: 1rem;
}

.city-why-icon svg {
  width: 100%;
  height: 100%;
}
.city-why-card h3 {
  font-size: 2rem;
  line-height: 1.02;
  margin: 0 0 1rem;
  color: #050505;
}
.city-why-card p {
  font-size: 1.16rem;
  line-height: 1.46;
  color: #1f1f1f;
  margin: 0 0 1.2rem;
}

.city-steps-section {
  background: linear-gradient(90deg, #d6216f 0%, #5e1fd0 50%, #a015b7 100%);
  color: #fff;
  padding: 2.4rem 0;
}
.city-steps-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}
.city-steps-cta h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
}
.city-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.city-step-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.city-step-number {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1;
}
.city-step-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
}
.city-step h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.02;
  margin: 0 0 0.5rem;
  color: #fff;
}
.city-step p {
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.4;
  margin: 0;
  color: #fff;
}
.city-steps-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.city-steps-primary {
  background: #ffffff;
  color: #1a1214;
  min-width: 14rem;
}
.city-steps-secondary {
  border: 3px solid var(--btn-base-outline);
  background: rgba(57, 19, 23, 0.24);
  color: #fff;
  min-width: 12rem;
}

.city-footer {
  background: #121315;
  color: #f4f4f4;
  padding: 2.8rem 0 3.4rem;
  margin: 0;
}
.city-footer-top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.city-footer-col h4 {
  margin: 0 0 1rem;
  color: #bfbfbf;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  font-weight: 600;
}
.city-footer-col a {
  display: block;
  margin: 0 0 0.8rem;
  color: #f5f5f5;
  text-decoration: none;
  font-size: clamp(0.98rem, 1.05vw, 1.1rem);
  line-height: 1.4;
}
.city-footer-side h3 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.3rem, 1.75vw, 1.65rem);
  line-height: 1.15;
  color: #fff;
}
.city-footer-side h3 a {
  color: #fff;
  text-decoration: underline;
}
.city-connect {
  display: block;
  color: #9f9f9f;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
}
.city-socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.city-socials a {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 700;
}
.city-stonex {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.2;
}
.city-footer-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-top: 2px solid rgba(255, 255, 255, 0.38);
  border-bottom: 2px solid rgba(255, 255, 255, 0.38);
}
.city-footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.92rem, 1.02vw, 1.04rem);
  font-weight: 600;
}
.city-risk-copy {
  padding-top: 2rem;
}
.city-risk-copy p {
  margin: 0 0 1.2rem;
  color: #ededed;
  font-size: 0.9rem;
  line-height: 1.55;
}
.city-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
}
.city-footer-bottom span,
.city-footer-bottom a {
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
}

@media (max-width: 1400px) {
  .city-trade-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1100px) {
  .city-wrap {
    width: min(1680px, calc(100% - 48px));
  }
  .city-why-layout,
  .city-steps-layout,
  .city-footer-top,
  .city-footer-links {
    grid-template-columns: 1fr;
  }
  .city-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .city-wrap {
    width: min(1680px, calc(100% - 28px));
  }
  .city-trade-grid,
  .city-why-grid,
  .city-steps-grid {
    grid-template-columns: 1fr;
  }
  .city-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .city-step-line {
    display: none;
  }
  .city-footer-col a,
  .city-footer-links a {
    font-size: 0.95rem;
  }
  .city-steps-cta h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }
  .city-stonex,
  .city-footer-side h3 {
    font-size: 1.18rem;
  }
  .city-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
