.rt-phone-section {
  overflow: hidden;
}

.rt-phone-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.rt-phone-mock {
  position: relative;
  width: 260px;
  height: 520px;
  border-radius: 40px;
  background: var(--ink);
  border: 6px solid #2a1a4a;
  box-shadow: 0 40px 90px -30px rgba(148, 0, 211, 0.45);
  will-change: transform;
  transition: transform 0.1s linear;
}

.rt-phone-mock::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 14px;
  border-radius: 8px;
  background: #2a1a4a;
  z-index: 2;
}

.rt-phone-screen {
  position: absolute;
  inset: 10px;
  border-radius: 30px;
  background: radial-gradient(60% 60% at 50% 40%, rgba(148, 0, 211, 0.35), transparent 70%), var(--ink-deep);
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
  padding: 50px 20px 24px;
}

.rt-phone-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.rt-phone-chip {
  width: 50px;
  height: 58px;
  border-radius: 14px;
  background: rgba(212, 162, 76, 0.08);
  border: 1.4px solid rgba(212, 162, 76, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.rt-phone-chip img { width: 26px; height: 26px; }

.rt-phone-chip span {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(251, 249, 255, 0.75);
}