:root {
  --ink: #06111f;
  --ink-2: #0a1a2d;
  --surface: #0d2036;
  --line: rgba(147, 177, 210, 0.18);
  --text: #f7fbff;
  --muted: #a6b7ca;
  --cyan: #2ce6c5;
  --blue: #2997ff;
  --violet: #7657ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

body.admin-bar .site-header {
  top: 32px;
}

.store-icon {
  min-width: 28px;
  color: white;
  font-size: 23px;
  line-height: 1;
  text-align: center;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -80px;
  border-radius: 8px;
  padding: 12px 16px;
  color: #06111f;
  background: white;
}

.skip-link:focus {
  top: 16px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 0 clamp(22px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 17, 31, 0.82);
  backdrop-filter: blur(20px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.site-header nav a {
  color: #b6c6d7;
  font-size: 14px;
  transition: color 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: white;
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 19px;
  color: #031d20;
  background: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 32px rgba(44, 230, 197, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta svg {
  width: 17px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(44, 230, 197, 0.28);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(860px, 100vh);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
  align-items: center;
  gap: clamp(20px, 4vw, 80px);
  overflow: hidden;
  padding: 130px clamp(24px, 7vw, 108px) 70px;
  background:
    radial-gradient(circle at 72% 42%, rgba(41, 151, 255, 0.13), transparent 28%),
    radial-gradient(circle at 58% 86%, rgba(118, 87, 255, 0.12), transparent 32%),
    linear-gradient(145deg, #06111f 0%, #071627 54%, #0a1c31 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: auto -10% -280px -10%;
  height: 460px;
  background: linear-gradient(90deg, rgba(118, 87, 255, 0.2), rgba(44, 230, 197, 0.12));
  filter: blur(100px);
}

.hero__grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(105, 150, 194, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 150, 194, 0.13) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  animation: rise 680ms ease both;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  border: 1px solid rgba(44, 230, 197, 0.28);
  border-radius: 999px;
  padding: 8px 13px;
  color: #8ff5df;
  background: rgba(44, 230, 197, 0.06);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 em {
  color: transparent;
  background: linear-gradient(90deg, #38e8c8, #63c3ff 58%, #9279ff);
  background-clip: text;
  font-style: normal;
}

.hero__lead {
  max-width: 625px;
  margin: 27px 0 0;
  color: #b1c1d3;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 21px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button svg {
  width: 18px;
}

.button--primary {
  color: #02221f;
  background: linear-gradient(135deg, #49f1d1, #25d9bd);
  box-shadow: 0 15px 40px rgba(44, 230, 197, 0.17);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  color: #dbe8f4;
  background: rgba(255, 255, 255, 0.04);
}

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

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.store-badge {
  min-width: 152px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 8px 13px;
  background: #050b12;
  transition: border-color 180ms ease, transform 180ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
}

.store-badge--recommended {
  border-color: rgba(44, 230, 197, 0.48);
}

.store-badge svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  stroke-width: 1;
}

.store-badge small,
.store-badge strong {
  display: block;
}

.store-badge small {
  margin-bottom: 1px;
  color: #99a7b6;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.store-badge strong {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.trust-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 0;
  color: #7f95aa;
  font-size: 12px;
}

.trust-note svg {
  flex: 0 0 auto;
  width: 18px;
  color: var(--cyan);
}

.phone-stage {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  place-items: center;
  animation: fade-in 900ms 160ms ease both;
}

.phone-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 168, 255, 0.18), rgba(118, 87, 255, 0.04) 48%, transparent 70%);
  filter: blur(5px);
}

.orbit {
  position: absolute;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(89, 167, 238, 0.14);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-14deg);
}

.orbit::after {
  content: "";
  position: absolute;
  top: 49%;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.orbit--two {
  width: 410px;
  height: 410px;
  transform: rotateY(68deg) rotateZ(14deg);
  border-color: rgba(118, 87, 255, 0.2);
}

.orbit--two::after {
  background: var(--violet);
  box-shadow: 0 0 16px var(--violet);
}

.phone-visual {
  position: relative;
  z-index: 2;
  width: min(320px, 76vw);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 30px 50px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 38px rgba(45, 140, 231, 0.16));
  transform: rotate(2deg);
}

.phone__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #adc0d1;
  font-size: 8px;
}

.phone__island {
  width: 68px;
  height: 17px;
  border-radius: 999px;
  background: #03070b;
}

.phone__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 700;
}

.mini-mark {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid #664cff;
  border-radius: 50%;
  color: #8f7eff;
  font-size: 11px;
}

.status-dot {
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(44, 230, 197, 0.8);
}

.balance-card {
  margin-top: 19px;
  border: 1px solid rgba(99, 195, 255, 0.18);
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(118,87,255,.28), transparent 36%),
    linear-gradient(135deg, rgba(31, 94, 144, 0.55), rgba(16, 45, 72, 0.7));
}

.balance-card span,
.balance-card strong,
.balance-card small {
  display: block;
}

.balance-card span {
  color: #a7bed2;
  font-size: 9px;
}

.balance-card strong {
  margin-top: 10px;
  font-size: 26px;
  letter-spacing: 0.08em;
}

.balance-card small {
  margin-top: 12px;
  color: #67d9c6;
  font-size: 8px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 16px;
}

.quick-actions div {
  display: grid;
  place-items: center;
  gap: 5px;
}

.quick-actions span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(102, 184, 250, 0.18);
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.04);
}

.quick-actions small {
  color: #95a9bc;
  font-size: 7px;
}

.asset-heading {
  display: flex;
  justify-content: space-between;
  margin: 22px 2px 11px;
  font-size: 9px;
}

.asset-heading span {
  color: #67d9c6;
}

.asset-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 12px 2px;
  font-size: 9px;
}

.asset-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #06261e;
  background: var(--cyan);
  font-weight: 900;
}

.asset-icon--violet {
  color: white;
  background: var(--violet);
}

.asset-row strong,
.asset-row small {
  display: block;
}

.asset-row small {
  margin-top: 3px;
  color: #72889d;
  font-size: 7px;
}

.floating-pill {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(144, 185, 225, 0.19);
  border-radius: 14px;
  padding: 11px 14px;
  background: rgba(10, 28, 47, 0.82);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
}

.floating-pill svg {
  width: 25px;
  color: var(--cyan);
}

.floating-pill span {
  font-size: 11px;
  font-weight: 700;
}

.floating-pill small {
  display: block;
  margin-bottom: 3px;
  color: #758ba0;
  font-size: 7px;
  letter-spacing: .12em;
}

.floating-pill--left {
  left: 3%;
  top: 48%;
}

.floating-pill--right {
  right: 1%;
  bottom: 23%;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 18px var(--violet);
}

.control-strip {
  min-height: 122px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(24px, 7vw, 108px);
  background: #071321;
}

.control-strip > div {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 24px clamp(16px, 3vw, 50px);
  border-right: 1px solid var(--line);
}

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

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

.control-strip span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.control-strip p {
  margin: 0;
  color: #8194a7;
  font-size: 12px;
  line-height: 1.5;
}

.control-strip strong {
  display: block;
  color: #ecf6ff;
  font-size: 14px;
}

.section {
  position: relative;
  padding: clamp(88px, 10vw, 148px) clamp(24px, 7vw, 108px);
}

.section--light {
  color: #10243a;
  background: #f5f8fb;
}

.section--navy {
  background:
    radial-gradient(circle at 92% 14%, rgba(44, 230, 197, 0.08), transparent 26%),
    #09182a;
}

.section-kicker {
  color: #00a990;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}

.section h2 {
  max-width: 800px;
  margin: 18px 0 0;
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.section h3 {
  margin: 0;
  letter-spacing: -.025em;
}

.section-lead {
  max-width: 570px;
  margin: 0;
  color: #9cafc2;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
}

.section-lead--dark {
  color: #61758a;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-heading--dark {
  color: #10243a;
}

.problem {
  padding-top: 112px;
  padding-bottom: 112px;
}

.problem__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.problem h2 {
  margin-top: 22px;
  font-size: clamp(38px, 4.2vw, 60px);
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.stablecoin-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.stablecoin-chips span {
  border: 1px solid #d8e5eb;
  border-radius: 14px;
  padding: 15px;
  color: #6a7d8f;
  background: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.4;
}

.stablecoin-chips strong {
  display: block;
  margin-bottom: 3px;
  color: #0b7569;
  font-size: 14px;
  letter-spacing: .04em;
}

.check-list li {
  position: relative;
  padding-left: 31px;
  color: #294057;
  font-size: 14px;
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #007d6c;
  background: #d8f7f0;
  font-size: 11px;
  font-weight: 900;
}

.value {
  background:
    radial-gradient(circle at 0 0, rgba(118, 87, 255, 0.12), transparent 29%),
    #06111f;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 315px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 42px);
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.018));
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 230, 197, .34);
  background: linear-gradient(145deg, rgba(44,230,197,.07), rgba(255,255,255,.025));
}

.value-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.value-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(44,230,197,.25);
  border-radius: 15px;
  color: var(--cyan);
  background: rgba(44,230,197,.06);
  font-size: 24px;
}

.value-card__number {
  color: #53697f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.value-card h3 {
  margin-top: 52px;
  font-size: 24px;
}

.value-card p {
  margin: 15px 0 0;
  color: #879caf;
  font-size: 14px;
  line-height: 1.7;
}

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

.feature-card {
  min-height: 250px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(25px, 3vw, 42px);
}

.feature-card > span {
  display: block;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
}

.feature-card h3 {
  margin-top: 57px;
  font-size: 20px;
}

.feature-card p {
  margin: 13px 0 0;
  color: #8298ae;
  font-size: 13px;
  line-height: 1.7;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.step {
  min-height: 250px;
  border-top: 2px solid #d8e1e9;
  padding: 24px 18px 20px 0;
}

.step > span {
  color: #00a990;
  font-size: 11px;
  font-weight: 900;
}

.step > div {
  margin-top: 70px;
}

.step h3 {
  font-size: 22px;
}

.step p {
  margin: 10px 0 0;
  color: #687b8e;
  font-size: 13px;
  line-height: 1.65;
}

.warning {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  border: 1px solid #d6e2e9;
  border-radius: 16px;
  padding: 22px 26px;
  background: white;
}

.warning > span {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #7a4d00;
  background: #fff1ca;
  font-weight: 900;
}

.warning p {
  margin: 0;
  color: #627589;
  font-size: 13px;
  line-height: 1.6;
}

.warning strong {
  display: block;
  color: #283e53;
}

.use-cases {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(60px, 9vw, 150px);
  background:
    radial-gradient(circle at 8% 85%, rgba(118,87,255,.16), transparent 25%),
    #06111f;
}

.use-cases__copy {
  position: sticky;
  top: 115px;
  align-self: start;
}

.use-cases__copy h2 {
  font-size: clamp(42px, 4vw, 60px);
}

.use-cases__copy .section-lead {
  margin-top: 24px;
}

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

.use-case-list > div {
  min-height: 96px;
  display: grid;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.use-case-list span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
}

.use-case-list p {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: -.02em;
}

.use-case-list i {
  color: #4e687e;
  font-size: 18px;
  font-style: normal;
}

.availability-note {
  grid-column: 2;
  margin: -80px 0 0;
  color: #657d92;
  font-size: 11px;
  line-height: 1.6;
}

.security {
  overflow: hidden;
}

.security__intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.security__intro .section-lead {
  margin: 25px auto 0;
}

.security-grid {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 62px auto 0;
}

.security-card {
  border: 1px solid #dbe3ea;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 48px);
  background: white;
  box-shadow: 0 25px 70px rgba(36, 64, 91, .07);
}

.security-card--accent {
  border-color: #9debdc;
  background: linear-gradient(155deg, #ffffff, #edfcf8);
}

.security-card__title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.security-card__title img,
.generic-platform {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.generic-platform {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #637588;
  background: #edf1f4;
  font-weight: 800;
}

.security-card__title small {
  display: block;
  color: #748799;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.security-card__title h3 {
  margin-top: 4px;
  font-size: 20px;
}

.security-card ul {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.security-card li {
  position: relative;
  border-top: 1px solid #e5ebef;
  padding: 17px 0 17px 27px;
  color: #52677b;
  font-size: 13px;
}

.security-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00a990;
  font-weight: 900;
}

.balance-note {
  max-width: 870px;
  margin: 28px auto 0;
  color: #728496;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.providers {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 9vw, 140px);
}

.providers__content .section-lead {
  margin-bottom: 28px;
}

.provider-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.provider-tags span {
  border: 1px solid rgba(110,161,205,.2);
  border-radius: 999px;
  padding: 11px 15px;
  color: #b7c8d9;
  background: rgba(255,255,255,.025);
  font-size: 12px;
}

.provider-note {
  margin: 30px 0 0;
  border-left: 2px solid var(--cyan);
  padding-left: 18px;
  color: #758ca2;
  font-size: 12px;
  line-height: 1.7;
}

.faq {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(60px, 9vw, 140px);
}

.faq__intro {
  position: sticky;
  top: 115px;
  align-self: start;
}

.faq__intro h2 {
  font-size: clamp(38px, 3.7vw, 56px);
}

.faq__intro .section-lead {
  margin-top: 24px;
}

.faq-list {
  border-top: 1px solid #d7e0e7;
}

.faq-list details {
  border-bottom: 1px solid #d7e0e7;
}

.faq-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: #1c344b;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #087f70;
  background: #def6f1;
  transition: transform 180ms ease;
}

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

.faq-list details > p {
  max-width: 680px;
  margin: -4px 55px 26px 0;
  color: #667a8d;
  font-size: 14px;
  line-height: 1.7;
}

.final-cta {
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(118,87,255,.1), rgba(44,230,197,.05)),
    #06111f;
}

.final-cta__glow {
  position: absolute;
  z-index: -1;
  bottom: -300px;
  width: 760px;
  height: 600px;
  border-radius: 50%;
  background: rgba(41,151,255,.2);
  filter: blur(120px);
}

.final-cta > img {
  width: 112px;
  height: 112px;
  margin-bottom: 26px;
  object-fit: contain;
}

.final-cta h2 {
  max-width: 860px;
}

.final-cta > p {
  max-width: 630px;
  margin: 25px 0 0;
  color: #9eb1c3;
  font-size: 18px;
  line-height: 1.65;
}

.final-cta .store-row {
  justify-content: center;
  margin-top: 33px;
}

.final-cta > small {
  margin-top: 22px;
  color: #6f869b;
  font-size: 10px;
}

footer {
  padding: 78px clamp(24px, 7vw, 108px) 30px;
  border-top: 1px solid var(--line);
  background: #040b13;
}

.footer__top {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  padding-bottom: 60px;
}

.footer__brand .brand {
  width: fit-content;
}

.footer__brand p {
  max-width: 370px;
  margin: 22px 0;
  color: #6f8498;
  font-size: 13px;
  line-height: 1.7;
}

.footer__brand > a:last-child {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer__links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links strong {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer__links a {
  color: #6f8498;
  font-size: 12px;
  line-height: 1.45;
}

.footer__links a:hover {
  color: white;
}

.legal-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.legal-disclaimer svg {
  flex: 0 0 auto;
  width: 23px;
  color: var(--cyan);
}

.legal-disclaimer > span {
  flex: 0 0 auto;
  color: var(--cyan);
  font-size: 22px;
  line-height: 1;
}

.legal-disclaimer p {
  margin: 0;
  color: #667b8f;
  font-size: 10px;
  line-height: 1.75;
}

.legal-disclaimer strong {
  color: #a9b9c8;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 25px;
  color: #4c6073;
  font-size: 10px;
}

.mobile-download {
  display: none;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-switcher select {
  max-width: 150px;
  min-height: 42px;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 34px 0 14px;
  color: #dce9f5;
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.language-switcher::after {
  content: "⌄";
  position: absolute;
  right: 13px;
  color: var(--cyan);
  pointer-events: none;
}

.language-switcher option {
  color: #10243a;
  background: white;
}

.partners {
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(41, 151, 255, 0.12), transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(44, 230, 197, 0.08), transparent 28%),
    #071321;
}

.partners__intro {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.partners__intro .section-lead {
  justify-self: end;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 54px;
}

.partner-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  transition: transform 180ms ease, border-color 180ms ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: rgba(44, 230, 197, 0.42);
}

.partner-card strong {
  color: #f7fbff;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.045em;
}

.partner-card span {
  max-width: 520px;
  color: #8fa5b9;
  font-size: 12px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.social-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: #9eb1c3;
  font-size: 10px;
  transition: color 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  border-color: rgba(44, 230, 197, 0.38);
  color: var(--cyan);
}

body.terusa-rtl {
  text-align: right;
}

body.terusa-rtl .language-switcher select {
  padding-right: 14px;
  padding-left: 34px;
}

body.terusa-rtl .language-switcher::after {
  right: auto;
  left: 13px;
}

body.terusa-rtl .provider-note {
  border-right: 2px solid var(--cyan);
  border-left: 0;
  padding-right: 18px;
  padding-left: 0;
}

body.terusa-rtl .check-list li,
body.terusa-rtl .security-card li {
  padding-right: 31px;
  padding-left: 0;
}

body.terusa-rtl .check-list li::before,
body.terusa-rtl .security-card li::before {
  right: 0;
  left: auto;
}

/*
 * Compatibilidad con Naxos.
 * El tema padre define colores globales para h1, h2 y h3. Estas reglas
 * mantienen el contraste previsto en la plantilla TERUSA sin afectar al
 * resto del sitio.
 */
body.terusa-country-landing .hero h1,
body.terusa-country-landing .value h2,
body.terusa-country-landing .value h3,
body.terusa-country-landing .features h2,
body.terusa-country-landing .features h3,
body.terusa-country-landing .use-cases h2,
body.terusa-country-landing .use-cases h3,
body.terusa-country-landing .providers h2,
body.terusa-country-landing .providers h3,
body.terusa-country-landing .partners h2,
body.terusa-country-landing .partners h3,
body.terusa-country-landing .final-cta h2,
body.terusa-country-landing footer h2,
body.terusa-country-landing footer h3,
body.terusa-country-landing .footer__links strong {
  color: #f7fbff !important;
}

body.terusa-country-landing .section--light h2,
body.terusa-country-landing .section--light h3,
body.terusa-country-landing .problem h2,
body.terusa-country-landing .problem h3,
body.terusa-country-landing .how h2,
body.terusa-country-landing .how h3,
body.terusa-country-landing .security h2,
body.terusa-country-landing .security h3,
body.terusa-country-landing .faq h2,
body.terusa-country-landing .faq h3 {
  color: #10243a !important;
}

body.terusa-country-landing .final-cta > img {
  opacity: 1 !important;
  filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 0 24px rgba(255, 255, 255, 0.16)) !important;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; transform: scale(.97); }
  to { opacity: 1; transform: scale(1); }
}

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

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 390px;
    padding-left: 36px;
    padding-right: 36px;
  }

  .floating-pill--left {
    left: -3%;
  }

  .floating-pill--right {
    right: -3%;
  }

  .section-heading {
    gap: 45px;
  }

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

  .use-cases,
  .faq {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 40px;
  }

  .nav-cta {
    padding: 11px 15px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 112px 22px 50px;
  }

  h1 {
    font-size: clamp(43px, 12.5vw, 64px);
  }

  .hero__lead {
    font-size: 17px;
  }

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

  .phone-visual {
    transform: none;
  }

  .floating-pill--left {
    left: 0;
  }

  .floating-pill--right {
    right: 0;
  }

  .control-strip {
    grid-template-columns: 1fr;
    padding: 0 22px;
  }

  .control-strip > div,
  .control-strip > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
  }

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

  .section {
    padding: 82px 22px;
  }

  .section-heading,
  .problem__grid,
  .use-cases,
  .providers,
  .partners__intro,
  .faq,
  .footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 42px;
  }

  .problem {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .stablecoin-chips {
    grid-template-columns: 1fr;
  }

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

  .value-card {
    min-height: 270px;
  }

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

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

  .use-cases__copy,
  .faq__intro {
    position: static;
  }

  .availability-note {
    grid-column: auto;
    margin: 0;
  }

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

  .partners__intro .section-lead {
    justify-self: start;
  }

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

  .footer__top {
    gap: 55px;
  }

  .footer__links {
    gap: 24px;
  }

  .mobile-download {
    position: fixed;
    z-index: 60;
    right: 16px;
    bottom: 15px;
    left: 16px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 13px;
    color: #04241f;
    background: var(--cyan);
    box-shadow: 0 15px 45px rgba(0,0,0,.35);
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-download svg {
    width: 18px;
  }

  footer {
    padding-bottom: 96px;
  }
}

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

  .language-switcher select {
    max-width: 168px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .store-row {
    flex-direction: column;
  }

  .store-badge {
    width: 100%;
  }

  .phone-stage {
    min-height: 535px;
    margin: -12px -20px -24px;
  }

  .phone-visual {
    width: min(292px, 82vw);
  }

  .floating-pill--left {
    left: -8px;
  }

  .floating-pill--right {
    right: -8px;
  }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 215px;
  }

  .feature-card h3 {
    margin-top: 42px;
  }

  .step {
    min-height: auto;
    display: grid;
    grid-template-columns: 42px 1fr;
    padding: 24px 0;
  }

  .step > div {
    margin-top: 0;
  }

  .security-card {
    padding: 26px 22px;
  }

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

  .footer__links > div:last-child {
    grid-column: span 2;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

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

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